aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorAndrew Chambers <[email protected]>2021-10-11 11:42:20 +1300
committerAndrew Chambers <[email protected]>2021-10-11 11:42:20 +1300
commitfb0ac681dd8d271799c6652b1e581572cf68a9c3 (patch)
treeb960df315437e86ddeaa3ed1780c43edc77a4cb9 /main.c
parenteb7790fa6db6b15ac1867256369ac524cf9ce622 (diff)
Bug fixes.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index 1b0f071..81f31fb 100644
--- a/main.c
+++ b/main.c
@@ -299,7 +299,7 @@ static void su64(uint32_t l) {
uint8_t buf[8] = {
l & 0xff,
(l & 0xff00) >> 8,
- (l & 0xff00) >> 16,
+ (l & 0xff0000) >> 16,
(l & 0xff000000) >> 24,
(l & 0xff00000000) >> 32,
(l & 0xff0000000000) >> 40,