From cd137e08f951f1d64599c526b61b2d2c4cede074 Mon Sep 17 00:00:00 2001 From: stefanf Date: Sat, 5 Dec 2009 13:12:04 +0000 Subject: Add a missing space to the error message when execvp() failed. --- usr.bin/make/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin') 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 { -- cgit v1.1