From 3787d01a51c110a513e9b6fafa6c5c641399f2ce Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 16 Jun 2005 21:33:43 +0000 Subject: Don't embed `this'-style quotes in format strings. Rather than this: error (..., "...`%s'...", arg); do this: error (..., "...%s...", quote (arg)); --- src/split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/split.c') diff --git a/src/split.c b/src/split.c index 631fd0430..95cb05cbd 100644 --- a/src/split.c +++ b/src/split.c @@ -211,7 +211,7 @@ cwrite (bool new_file_flag, const char *bp, size_t bytes) next_file_name (); if (verbose) - fprintf (stderr, _("creating file `%s'\n"), outfile); + fprintf (stderr, _("creating file %s\n"), quote (outfile)); output_desc = fd_safer (open (outfile, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP -- cgit v1.2.3-54-g00ecf