aboutsummaryrefslogtreecommitdiff
path: root/lux-js/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-js/source/program.lux')
-rw-r--r--lux-js/source/program.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux
index 48392d358..aacbcdb54 100644
--- a/lux-js/source/program.lux
+++ b/lux-js/source/program.lux
@@ -285,7 +285,7 @@
[high low]])
(#.Some (.int (n.+ (|> high .nat (i64.left_shift 32))
(if (i.< +0 (.int low))
- (|> low .nat (i64.left_shift 32) (i64.logic_right_shift 32))
+ (|> low .nat (i64.left_shift 32) (i64.right_shift 32))
(.nat low)))))
_