mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
Fix 3 printf's that had the wrong number of arguments.
Submitted by: gibbs
This commit is contained in:
parent
3288e2905f
commit
e602d31e02
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8520
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user