summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-11-02 18:47:50 +0100
committerJim Meyering <meyering@redhat.com>2011-11-02 18:50:57 +0100
commitdd9cda0858dbe50fa638db267bdf63c77afc2c75 (patch)
tree60ded609b8bee58fbd247200842fc4426d127824
parent3acc9d6f25e716af0edee5721ba33e87da802bf7 (diff)
downloadgzip-dd9cda0858dbe50fa638db267bdf63c77afc2c75.tar.gz
maint: avoid "make syntax-check" failure
* gzip.c (treat_stdin): Indent with spaces, not TABs.
-rw-r--r--gzip.c18
1 files 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);
}