summaryrefslogtreecommitdiffstats
path: root/lib/lz4hc.h
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-10-21 00:04:29 (GMT)
committerYann Collet <cyan@fb.com>2017-10-21 00:04:29 (GMT)
commita12cdf00c3d0a0e3e7b2638d4a256f14b15c0072 (patch)
treec0cde9ab21da85ee311c77bad1a8907b00b37720 /lib/lz4hc.h
parentfd6bd5107b81243952a4b2e0b3de901f45608b78 (diff)
downloadlz4-a12cdf00c3d0a0e3e7b2638d4a256f14b15c0072.zip
lz4-a12cdf00c3d0a0e3e7b2638d4a256f14b15c0072.tar.gz
lz4-a12cdf00c3d0a0e3e7b2638d4a256f14b15c0072.tar.bz2
lz4opt: added hash chain search
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r--lib/lz4hc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index 66d5636..a9cefbb 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -129,7 +129,7 @@ LZ4LIB_API int LZ4_saveDictHC (LZ4_streamHC_t* streamHCPtr, char* safeBuffer, in
* They are exposed to allow static allocation of `LZ4_streamHC_t`.
* Using these definitions makes the code vulnerable to potential API break when upgrading LZ4
**************************************/
-#define LZ4HC_DICTIONARY_LOGSIZE 17 /* because of btopt, hc would only need 16 */
+#define LZ4HC_DICTIONARY_LOGSIZE 17 /* due to btree, hc would only need 16 */
#define LZ4HC_MAXD (1<<LZ4HC_DICTIONARY_LOGSIZE)
#define LZ4HC_MAXD_MASK (LZ4HC_MAXD - 1)