From: Jim Meyering Date: Wed, 2 Nov 2011 17:47:50 +0000 (+0100) Subject: maint: avoid "make syntax-check" failure X-Git-Tag: v1.5~20 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=dd9cda0858dbe50fa638db267bdf63c77afc2c75;p=debian%2Fgzip maint: avoid "make syntax-check" failure * gzip.c (treat_stdin): Indent with spaces, not TABs. --- 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); }