From: Jim Meyering Date: Fri, 11 Jul 2003 10:38:39 +0000 (+0000) Subject: (batch_convert): Use the quote function rather than using literal `...' in X-Git-Tag: v5.0.1~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=208b8da666a763b70b4ab3a9fe29ea81bced8d72;p=thirdparty%2Fcoreutils.git (batch_convert): Use the quote function rather than using literal `...' in a diagnostic. --- diff --git a/src/date.c b/src/date.c index d92f646ec2..10e91914c3 100644 --- a/src/date.c +++ b/src/date.c @@ -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);