summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2009-12-05 13:12:04 +0000
committerstefanf <stefanf@FreeBSD.org>2009-12-05 13:12:04 +0000
commitcd137e08f951f1d64599c526b61b2d2c4cede074 (patch)
treeb0811896668d4618aa13690880bc672adbda0017 /usr.bin
parent4e7d20f2c30416446a79bf10124e8cfdbd74cfe0 (diff)
downloadFreeBSD-src-cd137e08f951f1d64599c526b61b2d2c4cede074.zip
FreeBSD-src-cd137e08f951f1d64599c526b61b2d2c4cede074.tar.gz
Add a missing space to the error message when execvp() failed.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/proc.c b/usr.bin/make/proc.c
index 711f605..3a7e4f6 100644
--- a/usr.bin/make/proc.c
+++ b/usr.bin/make/proc.c
@@ -116,7 +116,7 @@ Proc_Exec(const ProcStuff *ps)
execvp(ps->argv[0], ps->argv);
write(STDERR_FILENO, ps->argv[0], strlen(ps->argv[0]));
- write(STDERR_FILENO, ":", 1);
+ write(STDERR_FILENO, ": ", 2);
write(STDERR_FILENO, strerror(errno), strlen(strerror(errno)));
write(STDERR_FILENO, "\n", 1);
} else {
OpenPOWER on IntegriCloud