From 518ad0177ae2f1aaefc49285b3536a6bd8d9973c Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Wed, 5 Oct 2011 20:32:32 -0700 Subject: Get inffixed.h and MAKEFIXED result to match. --- inflate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inflate.c') diff --git a/inflate.c b/inflate.c index a8431ab..dd880c4 100644 --- a/inflate.c +++ b/inflate.c @@ -321,8 +321,8 @@ void makefixed() low = 0; for (;;) { if ((low % 7) == 0) printf("\n "); - printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits, - state.lencode[low].val); + printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op, + state.lencode[low].bits, state.lencode[low].val); if (++low == size) break; putchar(','); } -- cgit v1.2.3-55-g6feb