We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e6a64a commit 82699e5Copy full SHA for 82699e5
decode.v
@@ -368,7 +368,7 @@ pub fn (mut d Decoder) decode_time[T](mut val T) ! {
368
}
369
data32 := binary.big_endian_u32(data[d.pos + 1 + 4..d.pos + 12])
370
data64 := binary.big_endian_u64(data[d.pos + 1 + 8..d.pos + 12])
371
- val = time.unix_nanosecond(i64(data64), data32)
+ val = time.unix_nanosecond(i64(data64), int(data32))
372
d.pos += 12
373
374
else {
0 commit comments