summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Youngman <jay@gnu.org>2007-12-20 10:10:59 +0000
committerJames Youngman <jay@gnu.org>2007-12-20 10:10:59 +0000
commit7447087e1156114856aae1fc9a8962f159d002bd (patch)
treed3d8a6abc172014395a20be6f27248df8cf69c69
parente154e6a2635227677e267c53e18237ddee74dfc9 (diff)
downloadfindutils-7447087e1156114856aae1fc9a8962f159d002bd.tar.gz
Installed typo fix from Jakub Bogusz
-rw-r--r--ChangeLog5
-rw-r--r--xargs/xargs.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 54d79810..0135bc94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-20 Jakub Bogusz <qboosh@pld-linux.org> (tiny change)
+
+ * xargs/xargs.c (parse_num): Corrected typo in format string
+ message.
+
2007-12-20 Clytie Siddall <clytie@riverland.net.au> (tiny change)
* find/find.c (wd_sanity_check): Corrected typo in the format
diff --git a/xargs/xargs.c b/xargs/xargs.c
index 3757cd5e..373e1a27 100644
--- a/xargs/xargs.c
+++ b/xargs/xargs.c
@@ -1281,7 +1281,7 @@ parse_num (char *str, int option, long int min, long int max, int fatal)
}
else if (val < min)
{
- fprintf (stderr, _("%1$s: value for -%2$c option should be >= %3%ld\n"),
+ fprintf (stderr, _("%1$s: value for -%2$c option should be >= %3$ld\n"),
program_name, option, min);
if (fatal)
{