diff options
Diffstat (limited to 'src/3rdparty/zlib/trees.c')
-rw-r--r-- | src/3rdparty/zlib/trees.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/zlib/trees.c b/src/3rdparty/zlib/trees.c index e62e4ac11..52c820fa2 100644 --- a/src/3rdparty/zlib/trees.c +++ b/src/3rdparty/zlib/trees.c @@ -642,7 +642,7 @@ local void build_tree(s, desc) } } - /* The pkzip format retquires that at least one distance code exists, + /* The pkzip format requires that at least one distance code exists, * and that at least one bit should be sent even if there is only one * possible code. So to avoid special checks later on we force at least * two codes of non zero frequency. @@ -816,7 +816,7 @@ local int build_bl_tree(s) */ /* Determine the number of bit length codes to send. The pkzip format - * retquires that at least 4 bit length codes be sent. (appnote.txt says + * requires that at least 4 bit length codes be sent. (appnote.txt says * 3 but the actual value used is 4.) */ for (max_blindex = BL_CODES-1; max_blindex >= 3; max_blindex--) { @@ -881,7 +881,7 @@ void _tr_stored_block(s, buf, stored_len, eof) /* =========================================================================== * Send one empty static block to give enough lookahead for inflate. * This takes 10 bits, of which 7 may remain in the bit buffer. - * The current inflate code retquires 9 bits of lookahead. If the + * The current inflate code requires 9 bits of lookahead. If the * last two codes for the previous block (real code plus EOB) were coded * on 5 bits or less, inflate may have only 5+3 bits of lookahead to decode * the last real code. In this case we send two empty static blocks instead |