From: Jim Meyering Date: Thu, 26 Mar 1998 15:41:14 +0000 (+0000) Subject: (batch_convert): Remove spurious space in error message. X-Git-Tag: TEXTUTILS-1_22f~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28cb02fc78ccd92b5f12eb967eb8b23b8931102f;p=platform%2Fupstream%2Fcoreutils.git (batch_convert): Remove spurious space in error message. Reported by Karl Berry. --- diff --git a/src/date.c b/src/date.c index 6e95b8f..3e4612e 100644 --- a/src/date.c +++ b/src/date.c @@ -170,7 +170,7 @@ batch_convert (const char *input_filename, const char *format) { if (line[line_length - 1] == '\n') line[line_length - 1] = '\0'; - error (0, 0, _("invalid date ` %s'"), line); + error (0, 0, _("invalid date `%s'"), line); status = 1; } else