summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2022-12-28 08:36:27 -0800
committerJim Meyering <meyering@fb.com>2022-12-28 08:36:27 -0800
commit00f4ade0914a1d27897db3686d0cbe7284f6bea9 (patch)
treec11bd2450ed91d28ec72ee82dce3c1bd97d4db5f
parentb00fcb98ad3e037392d0cf9ee4f8d6390185dd21 (diff)
downloadgzip-00f4ade0914a1d27897db3686d0cbe7284f6bea9.tar.gz
maint: SPC-indent inflate.c
* inflate.c: Indent with spaces, not TABs.
-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 */