summaryrefslogtreecommitdiff
path: root/function.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-01-25 18:16:14 +0000
committerEli Zaretskii <eliz@gnu.org>2012-01-25 18:16:14 +0000
commit715a11735f910d69b141c3b851ca1a806907f43f (patch)
tree37a5b34c89f7588461de858f79393764c8497449 /function.c
parent89f7058b99c24607dd371681435cc41e51fedf23 (diff)
downloadgunmake-715a11735f910d69b141c3b851ca1a806907f43f.tar.gz
function.c (define_new_function): Fix format strings in calls to `fatal'.
Diffstat (limited to 'function.c')
-rw-r--r--function.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/function.c b/function.c
index c387b35..52235db 100644
--- a/function.c
+++ b/function.c
@@ -2424,10 +2424,10 @@ define_new_function(const struct floc *flocp,
if (len > 255)
fatal (flocp, _("Function name too long: %s\n"), name);
if (min < 0 || min > 255)
- fatal (flocp, _("Invalid minimum argument count (%d) for function %s%s\n"),
+ fatal (flocp, _("Invalid minimum argument count (%d) for function %s\n"),
min, name);
if (max < 0 || max > 255 || max < min)
- fatal (flocp, _("Invalid maximum argument count (%d) for function %s%s\n"),
+ fatal (flocp, _("Invalid maximum argument count (%d) for function %s\n"),
max, name);
ent->name = name;