Skip to content

Commit 82699e5

Browse files
committed
ci: fix compilation of test with latest V 0.4.8
1 parent 3e6a64a commit 82699e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decode.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ pub fn (mut d Decoder) decode_time[T](mut val T) ! {
368368
}
369369
data32 := binary.big_endian_u32(data[d.pos + 1 + 4..d.pos + 12])
370370
data64 := binary.big_endian_u64(data[d.pos + 1 + 8..d.pos + 12])
371-
val = time.unix_nanosecond(i64(data64), data32)
371+
val = time.unix_nanosecond(i64(data64), int(data32))
372372
d.pos += 12
373373
}
374374
else {

0 commit comments

Comments
 (0)