Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e8a07c

Browse files
committed
Merge with 3.1.
2 parents 3b3499b + 9465d42 commit 2e8a07c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/zlib/deflate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ typedef struct internal_state {
188188
int nice_match; /* Stop searching when current match exceeds this */
189189

190190
/* used by trees.c: */
191-
/* Didn't use ct_data typedef below to suppress compiler warning */
191+
/* Didn't use ct_data typedef below to supress compiler warning */
192192
struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */
193193
struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
194194
struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */

Modules/zlib/gzio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ int ZEXPORT gzsetparams (file, level, strategy)
256256
/* ===========================================================================
257257
Read a byte from a gz_stream; update next_in and avail_in. Return EOF
258258
for end of file.
259-
IN assertion: the stream s has been successfully opened for reading.
259+
IN assertion: the stream s has been sucessfully opened for reading.
260260
*/
261261
local int get_byte(s)
262262
gz_stream *s;
@@ -281,7 +281,7 @@ local int get_byte(s)
281281
mode to transparent if the gzip magic header is not present; set s->err
282282
to Z_DATA_ERROR if the magic header is present but the rest of the header
283283
is incorrect.
284-
IN assertion: the stream s has already been created successfully;
284+
IN assertion: the stream s has already been created sucessfully;
285285
s->stream.avail_in is zero for the first time, but may be non-zero
286286
for concatenated .gz files.
287287
*/

0 commit comments

Comments
 (0)