From d103085de3752c50318391f8e1b395f1e2ca991d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 7 May 1999 19:15:37 +0000 Subject: [PATCH] (handle_line_error): Use %s, not %d, now that human_readable converts it to a string. --- src/csplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csplit.c b/src/csplit.c index 47b935c..855253f 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); -- 2.7.4