diff options
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/wordaccess_be_aligned.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/wordaccess_be_aligned.h b/lib/util/wordaccess_be_aligned.h index 0d5809e6..f3bbb841 100644 --- a/lib/util/wordaccess_be_aligned.h +++ b/lib/util/wordaccess_be_aligned.h @@ -24,7 +24,7 @@ bytesToWordint(wordintBytes bytes) { static __inline__ void wordintToBytes(wordintBytes * const bytesP, wordint const wordInt) { - uint16_t const hi = ((wordInt >> 48) & 0xFF) + uint16_t const hi = ((wordInt >> 48) & 0xFF); uint16_t const mh = ((wordInt >> 32) & 0xFF); uint16_t const ml = ((wordInt >> 24) & 0xFF); uint16_t const lo = ((wordInt >> 0) & 0xFF); |