summaryrefslogtreecommitdiffstats
path: root/programs/fuzzer.c
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-07-14 22:04:10 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-07-14 22:04:10 (GMT)
commitfbe14d128e881abb12aaf55d5ff31be0066b69ad (patch)
tree266adb51d292714d52eee37e794eaa2a61cd9437 /programs/fuzzer.c
parentd3c43d3251057da84f036c1e43fe015d2731cdd1 (diff)
downloadlz4-fbe14d128e881abb12aaf55d5ff31be0066b69ad.zip
lz4-fbe14d128e881abb12aaf55d5ff31be0066b69ad.tar.gz
lz4-fbe14d128e881abb12aaf55d5ff31be0066b69ad.tar.bz2
Modified : lz4 streaming API, strong types
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;