aboutsummaryrefslogtreecommitdiff
path: root/deflate.h
diff options
context:
space:
mode:
Diffstat (limited to 'deflate.h')
-rw-r--r--deflate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/deflate.h b/deflate.h
index 69fe3a9..854b156 100644
--- a/deflate.h
+++ b/deflate.h
@@ -222,9 +222,11 @@ typedef struct internal_state {
222 */ 222 */
223 223
224#ifdef LIT_MEM 224#ifdef LIT_MEM
225# define LIT_BUFS 5
225 ushf *d_buf; /* buffer for distances */ 226 ushf *d_buf; /* buffer for distances */
226 uchf *l_buf; /* buffer for literals/lengths */ 227 uchf *l_buf; /* buffer for literals/lengths */
227#else 228#else
229# define LIT_BUFS 4
228 uchf *sym_buf; /* buffer for distances and literals/lengths */ 230 uchf *sym_buf; /* buffer for distances and literals/lengths */
229#endif 231#endif
230 232