Skip to content

Commit 8507221

Browse files
Cyan4973hswong3i
authored andcommitted
fix LLU->ULL
LLU is a correct prefix according to C99 & C11 standards (but not C90). However, older versions of Visual Studio do not work with it. Replace by ULL, which doesn't have this issue. Fixes facebook#3647
1 parent a23b437 commit 8507221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/fuzzer.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ static void test_decompressBound(unsigned tnb)
531531
CHECK_EQ( ZSTD_flushStream(cctx, &out), 0 );
532532
}
533533
CHECK_EQ( ZSTD_endStream(cctx, &out), 0 );
534-
CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000LLU /* 4 GB */ );
534+
CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000ULL /* 4 GB */ );
535535
ZSTD_freeCCtx(cctx);
536536
free(outBuffer);
537537
}

0 commit comments

Comments
 (0)