mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-17 15:27:36 +00:00
Add a missing space to the error message when execvp() failed.
This commit is contained in:
parent
f573a0a634
commit
023c421a96
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200120
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user