commit 64ad43df7e9e67bde4f4008a233578ec63ef60cf
parent 8f48bb5e3d99531d9fb7eae7c71a8e288229719e
Author: nsz <nszabolcs@gmail.com>
Date: Tue, 18 Aug 2009 14:00:55 +0200
deflate comment fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/deflate.c b/deflate.c
@@ -12,7 +12,7 @@ enum {
Nclen = 19, /* number of code length codes */
MinMatch = 3, /* min match length */
MaxMatch = 258, /* max match length */
- WinSize = 1 << 15, /* max match distance (sliding window size) */
+ WinSize = 1 << 15, /* sliding window size */
MaxChainLen = 256, /* max length of hash chain */
HashBits = 13,