summaryrefslogtreecommitdiffstats
path: root/lib/lz4hc.c
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-12-28 12:08:38 (GMT)
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-12-28 12:08:38 (GMT)
commitc8b31263ccbf687c4ea05f29da2011462d1e8e5b (patch)
treed56f802260d01b9cb1c77f8411bc5d98622c4338 /lib/lz4hc.c
parentd57ff6456d2fbf1c644eb07ff0684646bea6808a (diff)
downloadlz4-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.c2
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;
}