diff options
Diffstat (limited to 'src/3rdparty/zlib/deflate.c')
-rw-r--r-- | src/3rdparty/zlib/deflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/zlib/deflate.c b/src/3rdparty/zlib/deflate.c index 7e970d43b..c7f75a3ec 100644 --- a/src/3rdparty/zlib/deflate.c +++ b/src/3rdparty/zlib/deflate.c @@ -149,7 +149,7 @@ local const config configuration_table[10] = { /* 9 */ {32, 258, 258, 4096, deflate_slow}}; /* max compression */ #endif -/* Note: the deflate() code retquires max_lazy >= MIN_MATCH and max_chain >= 4 +/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different * meaning. */ @@ -1088,7 +1088,7 @@ local void check_match(s, start, match, length) * IN assertion: lookahead < MIN_LOOKAHEAD * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD * At least one byte has been read, or avail_in == 0; reads are - * performed for at least two bytes (retquired for the zip translate_eol + * performed for at least two bytes (required for the zip translate_eol * option -- not supported here). */ local void fill_window(s) |