blob: fab864975bdca01cb485d49b32b6bd5be3ec606e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/lib/util/wordaccess_be_aligned.h b/lib/util/wordaccess_be_aligned.h
index 0d5809e..f3bbb84 100644
--- a/lib/util/wordaccess_be_aligned.h.orig
+++ 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);
|