aboutsummaryrefslogtreecommitdiff
path: root/inflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'inflate.c')
-rw-r--r--inflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/inflate.c b/inflate.c
index a8431ab..dd880c4 100644
--- a/inflate.c
+++ b/inflate.c
@@ -321,8 +321,8 @@ void makefixed()
321 low = 0; 321 low = 0;
322 for (;;) { 322 for (;;) {
323 if ((low % 7) == 0) printf("\n "); 323 if ((low % 7) == 0) printf("\n ");
324 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits, 324 printf("{%u,%u,%d}", (low & 127) == 99 ? 64 : state.lencode[low].op,
325 state.lencode[low].val); 325 state.lencode[low].bits, state.lencode[low].val);
326 if (++low == size) break; 326 if (++low == size) break;
327 putchar(','); 327 putchar(',');
328 } 328 }