summaryrefslogtreecommitdiffstats
path: root/programs/fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'programs/fuzzer.c')
-rw-r--r--programs/fuzzer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/programs/fuzzer.c b/programs/fuzzer.c
index f78e72d..0f74f40 100644
--- a/programs/fuzzer.c
+++ b/programs/fuzzer.c
@@ -67,7 +67,7 @@
Constants
**************************************/
#ifndef LZ4_VERSION
-# define LZ4_VERSION "rc118"
+# define LZ4_VERSION ""
#endif
#define NB_ATTEMPTS (1<<16)
@@ -527,7 +527,7 @@ int FUZ_test(U32 seed, int nbCycles, int startCycle, double compressibility) {
LZ4_compress_continue (LZ4continue, dict, compressedBuffer, dictSize); // Just to fill hash tables
blockContinueCompressedSize = LZ4_compress_continue (LZ4continue, block, compressedBuffer, blockSize);
FUZ_CHECKTEST(blockContinueCompressedSize==0, "LZ4_compress_continue failed");
- LZ4_free (LZ4continue);
+ free (LZ4continue);
// Decompress with dictionary as prefix
FUZ_DISPLAYTEST;