summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inflate.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/inflate.c b/inflate.c
index 083d286..91fa3d8 100644
--- a/inflate.c
+++ b/inflate.c
@@ -314,13 +314,13 @@ int *m /* maximum lookup bits, returns actual */
#ifdef DEBUG
if (1 < verbose && *p)
{
- if (' ' <= n - i && n - i <= '~')
- {
- char ch = n - i;
- fprintf (stderr, "%c %u\n", ch, *p);
- }
- else
- fprintf (stderr, "0x%x %u\n", n - i, *p);
+ if (' ' <= n - i && n - i <= '~')
+ {
+ char ch = n - i;
+ fprintf (stderr, "%c %u\n", ch, *p);
+ }
+ else
+ fprintf (stderr, "0x%x %u\n", n - i, *p);
}
#endif
c[*p]++; /* assume all entries <= BMAX */
@@ -584,7 +584,7 @@ inflate_codes(struct huft *tl, struct huft *td, int bl, int bd)
d = w - t->v.n - ((unsigned)b & mask_bits[e]);
DUMPBITS(e)
if (fresh && w <= d)
- return 1;
+ return 1;
Tracevv ((stderr, "\\[%u,%u]", w - d, n));
/* do the copy */