Fix 3 printf's that had the wrong number of arguments.

Submitted by:	gibbs
This commit is contained in:
Rodney W. Grimes 1995-05-14 19:19:55 +00:00
parent 3288e2905f
commit e602d31e02
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8520

View File

@ -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);