From 749ae5083c2c663eb10a985bf5c27b99c5247542 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 30 Jun 2010 13:18:42 +0200 Subject: English and message format fixes Signed-off-by: Denys Vlasenko --- src/CLI/run-command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/CLI/run-command.cpp') 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 -- cgit