summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorW. Felix Handte <w@felixhandte.com>2018-04-24 15:55:53 (GMT)
committerW. Felix Handte <w@felixhandte.com>2018-04-24 15:55:53 (GMT)
commit13271a88d7c21bee4ee61f619ef359afc707f23c (patch)
tree636179e299007c95545ef8588b1717da16894240 /lib
parentee67f25576f111972bd5003c527d1ebee598dc71 (diff)
downloadlz4-13271a88d7c21bee4ee61f619ef359afc707f23c.zip
lz4-13271a88d7c21bee4ee61f619ef359afc707f23c.tar.gz
lz4-13271a88d7c21bee4ee61f619ef359afc707f23c.tar.bz2
Revert Stream Size Const to Correct Value
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4hc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index a762d3f..28e2528 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -175,7 +175,7 @@ struct LZ4HC_CCtx_internal
#endif
-#define LZ4_STREAMHCSIZE (4*LZ4HC_HASHTABLESIZE + 2*LZ4HC_MAXD + 64) /* 262200 */
+#define LZ4_STREAMHCSIZE (4*LZ4HC_HASHTABLESIZE + 2*LZ4HC_MAXD + 56) /* 262200 */
#define LZ4_STREAMHCSIZE_SIZET (LZ4_STREAMHCSIZE / sizeof(size_t))
union LZ4_streamHC_u {
size_t table[LZ4_STREAMHCSIZE_SIZET];