make tests green again

This commit is contained in:
Andreas Rumpf
2017-09-15 21:12:36 +02:00
parent 053b0ad6f3
commit 0fe2a83dda

View File

@@ -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