From 48f98424bdae92cbd54c3f41cb4f7cc5a18cbf30 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sun, 30 Sep 2012 17:07:24 +0200 Subject: [PATCH] test: fix error message in runner --- test/runner-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner-unix.c b/test/runner-unix.c index 668dc95e..c7cf9a13 100644 --- a/test/runner-unix.c +++ b/test/runner-unix.c @@ -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; }