From dd9cda0858dbe50fa638db267bdf63c77afc2c75 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 2 Nov 2011 18:47:50 +0100 Subject: [PATCH] maint: avoid "make syntax-check" failure * gzip.c (treat_stdin): Indent with spaces, not TABs. --- gzip.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/gzip.c b/gzip.c index cb10a23..b454e6d 100644 --- a/gzip.c +++ b/gzip.c @@ -617,15 +617,15 @@ local void treat_stdin() * * Here we use the --force option to get the other behavior. */ - if (! quiet) - fprintf (stderr, - ("%s: compressed data not %s a terminal." - " Use -f to force %scompression.\n" - "For help, type: %s -h\n"), - program_name, - decompress ? "read from" : "written to", - decompress ? "de" : "", - program_name); + if (! quiet) + fprintf (stderr, + ("%s: compressed data not %s a terminal." + " Use -f to force %scompression.\n" + "For help, type: %s -h\n"), + program_name, + decompress ? "read from" : "written to", + decompress ? "de" : "", + program_name); do_exit(ERROR); } -- 2.47.2