summaryrefslogtreecommitdiff
path: root/zlib.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2018-01-31 13:24:12 -0800
committerHans Kristian Rosbach <hk-github@circlestorm.org>2018-12-13 08:58:48 +0100
commit2aebdb5c7023de0b9ac7c19301216616997f961a (patch)
tree7d05fcaa7527de1e56416c464e6588590b835481 /zlib.h
parente9a016858ac2e3ba51a1241bef064db390a49c33 (diff)
Correct the initialization requirements for deflateInit2().
Diffstat (limited to 'zlib.h')
-rw-r--r--zlib.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/zlib.h b/zlib.h
index c7b7bf6..e48e927 100644
--- a/zlib.h
+++ b/zlib.h
@@ -541,8 +541,7 @@ ZEXTERN int ZEXPORT deflateInit2 (z_stream *strm,
int strategy);
This is another version of deflateInit with more compression options. The
- fields next_in, zalloc, zfree and opaque must be initialized before by the
- caller.
+ fields zalloc, zfree and opaque must be initialized before by the caller.
The method parameter is the compression method. It must be Z_DEFLATED in
this version of the library.