summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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