summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2019-05-29 19:56:27 (GMT)
committerYann Collet <cyan@fb.com>2019-05-29 19:56:27 (GMT)
commitc5bcb4d68b44bd276523cd354424b89efe511b76 (patch)
tree302ac8622f28f47d03264d4e5707cc33b202aef4 /tests
parent444550defad26bcbe2e62209badbba76e803e521 (diff)
downloadlz4-c5bcb4d68b44bd276523cd354424b89efe511b76.zip
lz4-c5bcb4d68b44bd276523cd354424b89efe511b76.tar.gz
lz4-c5bcb4d68b44bd276523cd354424b89efe511b76.tar.bz2
fixed minor conversion warning
Diffstat (limited to 'tests')
-rw-r--r--tests/fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fuzzer.c b/tests/fuzzer.c
index e04caa5..8107cb8 100644
--- a/tests/fuzzer.c
+++ b/tests/fuzzer.c
@@ -1031,7 +1031,7 @@ static void FUZ_unitTests(int compressionLevel)
assert(cSize <= (int)maxCSize);
/* decompress and verify */
{ int const dSize = LZ4_decompress_safe(testCompressed, testVerify, cSize, testInputSize);
- assert(dSize == sampleSize); /* correct size */
+ assert(dSize == (int)sampleSize); /* correct size */
{ XXH32_hash_t const crcCheck = XXH32(testVerify, (size_t)dSize, 0);
assert(crcCheck == crcOrig);
} } }