summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/misc/tvarnums.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/tvarnums.nim b/tests/misc/tvarnums.nim
index 04a1ef53b..4cc10d66a 100644
--- a/tests/misc/tvarnums.nim
+++ b/tests/misc/tvarnums.nim
@@ -8,7 +8,7 @@ import
   strutils
 
 type
-  TBuffer = array [0..10, int8]
+  TBuffer = array[0..10, int8]
 
 proc toVarNum(x: int32, b: var TBuffer) =
   # encoding: first bit indicates end of number (0 if at end)
@@ -67,7 +67,7 @@ proc toNum64(b: TBuffer): int64 =
 
 proc toNum(b: TBuffer): int32 =
   # treat first byte different:
-  result = ze(b[0]) and 63
+  result = ze(b[0]).int32 and 63i32
   var
     i = 0
     Shift = 6'i32