]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(batch_convert): Put `' around filename in error in case it's empty.
authorJim Meyering <jim@meyering.net>
Sun, 25 Feb 1996 05:31:26 +0000 (05:31 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 25 Feb 1996 05:31:26 +0000 (05:31 +0000)
src/date.c

index 5741c6506582ced3ffda6c010c064669b950bc2c..744900e7773c47d61d97a14c35ed8c828287ab0d 100644 (file)
@@ -103,7 +103,7 @@ batch_convert (const char *input_filename, const char *format)
       in_stream = fopen (input_filename, "r");
       if (in_stream == NULL)
        {
-         error (0, errno, "%s", input_filename);
+         error (1, errno, "`%s'", input_filename);
        }
     }