From b97ec631c6f7dd9cff2e3caf3b38e70b006e1b2d Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:23:01 -0700 Subject: zlib 1.2.0.7 --- contrib/infback9/infback9.c | 6 +++--- contrib/infback9/inftree9.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'contrib/infback9') diff --git a/contrib/infback9/infback9.c b/contrib/infback9/infback9.c index fb6acb4..34a95fc 100644 --- a/contrib/infback9/infback9.c +++ b/contrib/infback9/infback9.c @@ -321,7 +321,7 @@ void FAR *out_desc; break; } length = (unsigned)hold & 0xffff; - Tracev((stderr, "inflate: stored length %u\n", + Tracev((stderr, "inflate: stored length %lu\n", length)); INITBITS(); @@ -507,7 +507,7 @@ void FAR *out_desc; length += BITS(extra); DROPBITS(extra); } - Tracevv((stderr, "inflate: length %u\n", length)); + Tracevv((stderr, "inflate: length %lu\n", length)); /* get distance code */ for (;;) { @@ -545,7 +545,7 @@ void FAR *out_desc; mode = BAD; break; } - Tracevv((stderr, "inflate: distance %u\n", offset)); + Tracevv((stderr, "inflate: distance %lu\n", offset)); /* copy match from window to output */ do { diff --git a/contrib/infback9/inftree9.c b/contrib/infback9/inftree9.c index 0c544cf..2829a84 100644 --- a/contrib/infback9/inftree9.c +++ b/contrib/infback9/inftree9.c @@ -9,7 +9,7 @@ #define MAXBITS 15 const char inflate9_copyright[] = - " inflate9 1.2.0.6 Copyright 1995-2003 Mark Adler "; + " inflate9 1.2.0.7 Copyright 1995-2003 Mark Adler "; /* If you use the zlib library in a product, an acknowledgment is welcome in the documentation of your product. If for some reason you cannot @@ -64,7 +64,7 @@ unsigned short FAR *work; static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 128, 128, 128, 128, 128, 128, 128, 128, 129, 129, 129, 129, 130, 130, 130, 130, 131, 131, 131, 131, 132, 132, 132, 132, - 133, 133, 133, 133, 144, 65, 77}; + 133, 133, 133, 133, 144, 71, 69}; static const unsigned short dbase[32] = { /* Distance codes 0..31 base */ 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, -- cgit v1.2.3-55-g6feb