summaryrefslogtreecommitdiffstats
path: root/lib/lz4hc.h
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-07-13 09:48:31 (GMT)
committerYann Collet <cyan@fb.com>2022-07-13 09:48:31 (GMT)
commit20d4ff53610124ade31b787ef622dc9e21f63d8d (patch)
treecaa14a432ece862e92ff27557f59accf19266144 /lib/lz4hc.h
parentf294fabef6bac63d6eb0e2f8cbbf9c7d9d47e485 (diff)
downloadlz4-20d4ff53610124ade31b787ef622dc9e21f63d8d.zip
lz4-20d4ff53610124ade31b787ef622dc9e21f63d8d.tar.gz
lz4-20d4ff53610124ade31b787ef622dc9e21f63d8d.tar.bz2
removed ->base from lz4hc state
replaced by ->prefixStart
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 61e228d..3a5e72c 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -207,7 +207,7 @@ struct LZ4HC_CCtx_internal
LZ4_u32 hashTable[LZ4HC_HASHTABLESIZE];
LZ4_u16 chainTable[LZ4HC_MAXD];
const LZ4_byte* end; /* next block here to continue on current prefix */
- const LZ4_byte* base; /* All index relative to this position */
+ const LZ4_byte* prefixStart; /* Indexes relative to this position */
const LZ4_byte* dictBase; /* alternate base for extDict */
LZ4_u32 dictLimit; /* below that point, need extDict */
LZ4_u32 lowLimit; /* below that point, no more dict */