From: Jim Meyering Date: Fri, 7 May 1999 19:15:37 +0000 (+0000) Subject: (handle_line_error): Use %s, not %d, now that human_readable X-Git-Tag: TEXTUTILS-1_22k~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d103085de3752c50318391f8e1b395f1e2ca991d;p=platform%2Fupstream%2Fcoreutils.git (handle_line_error): Use %s, not %d, now that human_readable converts it to a string. --- diff --git a/src/csplit.c b/src/csplit.c index 47b935c55..855253f37 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -746,7 +746,7 @@ handle_line_error (const struct control *p, int repetition) { char buf[LONGEST_HUMAN_READABLE + 1]; - fprintf (stderr, _("%s: `%d': line number out of range"), + fprintf (stderr, _("%s: `%s': line number out of range"), program_name, human_readable (p->lines_required, buf, 1, 1)); if (repetition) fprintf (stderr, _(" on repetition %d\n"), repetition);