ivf2raw: fix wrong timestamps
1 files changed, 1 insertions(+), 1 deletions(-) M extra/ivf2raw.c
M extra/ivf2raw.c => extra/ivf2raw.c +1 -1
@@ 38,7 38,7 @@ Bu64le(Biobuf *b, u64int *o) int x, i; *o = 0; - for(i = 0; i < 8; *o |= x<<(i*8), i++){ + for(i = 0; i < 8; *o |= (uvlong)x<<(i*8), i++){ if((x = Bgetc(b)) < 0){ werrstr("failed to read 8 bytes"); return -1;