diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-28 12:08:38 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-28 12:08:38 (GMT) |
commit | c8b31263ccbf687c4ea05f29da2011462d1e8e5b (patch) | |
tree | d56f802260d01b9cb1c77f8411bc5d98622c4338 /lib/lz4hc.c | |
parent | d57ff6456d2fbf1c644eb07ff0684646bea6808a (diff) | |
download | lz4-c8b31263ccbf687c4ea05f29da2011462d1e8e5b.zip lz4-c8b31263ccbf687c4ea05f29da2011462d1e8e5b.tar.gz lz4-c8b31263ccbf687c4ea05f29da2011462d1e8e5b.tar.bz2 |
added FUZ_CLEVEL_DEFAULT
Diffstat (limited to 'lib/lz4hc.c')
-rw-r--r-- | lib/lz4hc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c index ae245b5..b2930de 100644 --- a/lib/lz4hc.c +++ b/lib/lz4hc.c @@ -564,7 +564,7 @@ int LZ4_loadDictHC (LZ4_streamHC_t* LZ4_streamHCPtr, const char* dictionary, int dictSize = 64 KB; } LZ4HC_init (ctxPtr, (const BYTE*)dictionary); - if (dictSize >= 4) LZ4HC_Insert (ctxPtr, (const BYTE*)dictionary +(dictSize-3)); + if (dictSize >= 4) LZ4HC_Insert (ctxPtr, (const BYTE*)dictionary + (dictSize-3)); ctxPtr->end = (const BYTE*)dictionary + dictSize; return dictSize; } |