Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
test: fix error message in runner
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Oct 1, 2012
1 parent 1923abd commit 48f9842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runner-unix.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit 48f9842

Please sign in to comment.