aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2024-03-09 14:24:57 -0800
committerGitHub <noreply@github.com>2024-03-09 14:24:57 -0800
commitcb596b024f2d8b08103e911bab4962893e6b10ea (patch)
tree4a947694c0718fec120a60cc1b048721432f11ee
parentc1875a738653426fe30ff8996eba6cacc6955e52 (diff)
parent2abe8d63e06f0e7c9adacd50855a05023e51f1e0 (diff)
downloadzstd-cb596b024f2d8b08103e911bab4962893e6b10ea.tar.gz
Merge pull request #3929 from facebook/llu_vscode
fix LLU->ULL
-rw-r--r--tests/fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index 6c1f58df..09349218 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -531,7 +531,7 @@ static void test_decompressBound(unsigned tnb)
CHECK_EQ( ZSTD_flushStream(cctx, &out), 0 );
}
CHECK_EQ( ZSTD_endStream(cctx, &out), 0 );
- CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000LLU /* 4 GB */ );
+ CHECK( ZSTD_decompressBound(outBuffer, out.pos) > 0x100000000ULL /* 4 GB */ );
ZSTD_freeCCtx(cctx);
free(outBuffer);
}