Skip to content

Commit

Permalink
ci: fix compilation of test with latest V 0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Dec 4, 2024
1 parent 3e6a64a commit 82699e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decode.v
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ pub fn (mut d Decoder) decode_time[T](mut val T) ! {
}
data32 := binary.big_endian_u32(data[d.pos + 1 + 4..d.pos + 12])
data64 := binary.big_endian_u64(data[d.pos + 1 + 8..d.pos + 12])
val = time.unix_nanosecond(i64(data64), data32)
val = time.unix_nanosecond(i64(data64), int(data32))
d.pos += 12
}
else {
Expand Down

0 comments on commit 82699e5

Please sign in to comment.