diff options
Diffstat (limited to 'src/CLI/run-command.cpp')
-rw-r--r-- | src/CLI/run-command.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CLI/run-command.cpp b/src/CLI/run-command.cpp index 8f9d63ec..1f6836d6 100644 --- a/src/CLI/run-command.cpp +++ b/src/CLI/run-command.cpp @@ -28,7 +28,7 @@ static pid_t start_command(char **argv) pid_t pid = vfork(); if (pid < 0) { - perror_msg_and_die("Can't fork"); + perror_msg_and_die("vfork"); } if (pid == 0) { // new process |