test: fix error message in runner

This commit is contained in:
Ben Noordhuis 2012-09-30 17:07:24 +02:00
parent 1923abda94
commit 48f98424bd

View File

@ -68,7 +68,7 @@ int process_start(char* name, char* part, process_info_t* p) {
pid_t pid = fork();
if (pid < 0) {
perror("vfork");
perror("fork");
return -1;
}