diff options
Diffstat (limited to 'tests/fork_test.pl')
-rwxr-xr-x | tests/fork_test.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fork_test.pl b/tests/fork_test.pl index cd166b84555..26c614a364a 100755 --- a/tests/fork_test.pl +++ b/tests/fork_test.pl @@ -67,7 +67,7 @@ $errors=0; while (($pid=wait()) != -1) { $ret=$?/256; - print "thread '" . $work{$pid} . "' finnished with exit code $ret\n"; + print "thread '" . $work{$pid} . "' finished with exit code $ret\n"; $errors++ if ($ret != 0); } |