1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

(batch_convert): Use the quote function rather than using literal `...' in

a diagnostic.
This commit is contained in:
Jim Meyering
2003-07-11 10:38:39 +00:00
parent 7c6b61d57d
commit 208b8da666

View File

@@ -276,7 +276,7 @@ batch_convert (const char *input_filename, const char *format)
}
if (fclose (in_stream) == EOF)
error (2, errno, "`%s'", input_filename);
error (2, errno, "%s", quote (input_filename));
if (line != NULL)
free (line);