🎨 Misc. shorthand operators

This commit is contained in:
Scott Lahteine
2022-06-26 10:01:22 -05:00
parent 0435b2220a
commit 23f19e9ce8
8 changed files with 18 additions and 18 deletions

View File

@ -1059,7 +1059,7 @@ static inline void convert_64_bit_to_byte_array(uint64_t value, uint8_t *data)
while (val_index < 8)
{
data[val_index++] = value & 0xFF;
value = value >> 8;
value >>= 8;
}
}