From e602d31e024d322dd462189f553d26c7ed12687b Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Sun, 14 May 1995 19:19:55 +0000 Subject: [PATCH] Fix 3 printf's that had the wrong number of arguments. Submitted by: gibbs --- usr.sbin/config/mkmakefile.c | 6 +++--- 1 file 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);