aboutsummaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'zutil.h')
-rw-r--r--zutil.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/zutil.h b/zutil.h
index a27430a..27ca693 100644
--- a/zutil.h
+++ b/zutil.h
@@ -65,7 +65,9 @@ extern z_const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
65/* To be used only when the state is known to be valid */ 65/* To be used only when the state is known to be valid */
66 66
67 /* common constants */ 67 /* common constants */
68 68#if MAX_WBITS < 9 || MAX_WBITS > 15
69# error MAX_WBITS must be in 9..15
70#endif
69#ifndef DEF_WBITS 71#ifndef DEF_WBITS
70# define DEF_WBITS MAX_WBITS 72# define DEF_WBITS MAX_WBITS
71#endif 73#endif