diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-02-07 10:18:18 +0100 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-02-07 10:18:18 +0100 |
commit | e65557d2e2c8e4fc7c03cfbd5b6d6c31aae91479 (patch) | |
tree | 1348572623643c346443477a63d91c73d825563d /zlib.h | |
parent | 2dfd7fb72b13276c700da413d72d22038034350c (diff) |
Fix typo from 'Add deflateGetDictionary() function' causing compilation failure.
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -648,7 +648,7 @@ ZEXTERN int ZEXPORT deflateSetDictionary(z_stream *strm, not perform any compression: this will be done by deflate(). */ -ZEXTERN int ZEXPORT deflateGetDictionary (z_stream *strm, unsigned char *dictionary, unsigned int *dictLength) { +ZEXTERN int ZEXPORT deflateGetDictionary (z_stream *strm, unsigned char *dictionary, unsigned int *dictLength); /* Returns the sliding dictionary being maintained by deflate. dictLength is set to the number of bytes in the dictionary, and that many bytes are copied |