diff options
Diffstat (limited to 'inflate.c')
-rw-r--r-- | inflate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | } |