aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-14 19:19:55 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-14 19:19:55 +0000
commite602d31e024d322dd462189f553d26c7ed12687b (patch)
tree9b97430dbea7b69dfa3abde67e6f4c786b22310e /usr.sbin/config/mkmakefile.c
parent3288e2905f3576b16293de0053ba867d0558a2f6 (diff)
downloadsrc-e602d31e024d322dd462189f553d26c7ed12687b.tar.gz
src-e602d31e024d322dd462189f553d26c7ed12687b.zip
Fix 3 printf's that had the wrong number of arguments.
Submitted by: gibbs
Notes
Notes: svn path=/head/; revision=8520
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index b3f7f07531b9..fce7082f64c5 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -346,7 +346,7 @@ nextparam:
next_quoted_word(fp, wd);
if (wd == 0) {
printf("%s: %s missing compile command string.\n",
- fname);
+ fname, this);
exit(1);
}
depends = ns(wd);
@@ -356,7 +356,7 @@ nextparam:
next_quoted_word(fp, wd);
if (wd == 0) {
printf("%s: %s missing clean file list.\n",
- fname);
+ fname, this);
exit(1);
}
clean = ns(wd);
@@ -366,7 +366,7 @@ nextparam:
next_quoted_word(fp, wd);
if (wd == 0) {
printf("%s: %s missing compile command string.\n",
- fname);
+ fname, this);
exit(1);
}
special = ns(wd);