From b117ba1d75d9ca2f23dcc8445a4d05d58af0123b Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Sun, 20 Sep 2020 16:31:59 -0700 Subject: Fixed tab indentation for inffixed_tbl.h. --- tools/makefixed.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'tools') diff --git a/tools/makefixed.c b/tools/makefixed.c index 6a7d061a02..7fe71e75ee 100644 --- a/tools/makefixed.c +++ b/tools/makefixed.c @@ -46,40 +46,40 @@ void makefixed(void) { memset(&state, 0, sizeof(state)); buildfixedtables(&state); - puts(" /* inffixed_tbl.h -- table for decoding fixed codes"); - puts(" * Generated automatically by makefixed()."); - puts(" */"); + puts("/* inffixed_tbl.h -- table for decoding fixed codes"); + puts(" * Generated automatically by makefixed()."); + puts(" */"); puts(""); - puts(" /* WARNING: this file should *not* be used by applications."); - puts(" It is part of the implementation of this library and is"); - puts(" subject to change. Applications should only use zlib.h."); - puts(" */"); + puts("/* WARNING: this file should *not* be used by applications."); + puts(" * It is part of the implementation of this library and is"); + puts(" * subject to change. Applications should only use zlib.h."); + puts(" */"); puts(""); size = 1U << 9; - printf(" static const code lenfix[%u] = {", size); + printf("static const code lenfix[%u] = {", size); low = 0; for (;;) { if ((low % 7) == 0) - printf("\n "); + printf("\n "); 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(','); } - puts("\n };"); + puts("\n};"); size = 1U << 5; - printf("\n static const code distfix[%u] = {", size); + printf("\nstatic const code distfix[%u] = {", size); low = 0; for (;;) { if ((low % 6) == 0) - printf("\n "); + printf("\n "); printf("{%u,%u,%d}", state.distcode[low].op, state.distcode[low].bits, state.distcode[low].val); if (++low == size) break; putchar(','); } - puts("\n };"); + puts("\n};"); } // The output of this application can be piped out to recreate inffixed_tbl.h -- cgit 0.0.5-2-1-g0f52