maint: avoid "make syntax-check" failure
authorJim Meyering <meyering@redhat.com>
Wed, 2 Nov 2011 17:47:50 +0000 (18:47 +0100)
committerJim Meyering <meyering@redhat.com>
Wed, 2 Nov 2011 17:50:57 +0000 (18:50 +0100)
* gzip.c (treat_stdin): Indent with spaces, not TABs.

gzip.c

diff --git a/gzip.c b/gzip.c
index cb10a232b65b79c4a78e219f307417daa8fd8f12..b454e6d28d6b26afca01e4c1086aacc797b482e9 100644 (file)
--- 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);
     }