From: Michael Adam Date: Fri, 13 May 2016 22:38:48 +0000 (+0200) Subject: selftest: fix printf in cleanup_child() X-Git-Tag: tdb-1.3.10~1076 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a3f0cfd6589023b2e66bf008966bdea785c18b9;p=thirdparty%2Fsamba.git selftest: fix printf in cleanup_child() Signed-off-by: Michael Adam Reviewed-by: Andreas Schneider --- diff --git a/selftest/target/Samba.pm b/selftest/target/Samba.pm index 6f37aa3e46a..7bab462e0e6 100644 --- a/selftest/target/Samba.pm +++ b/selftest/target/Samba.pm @@ -321,7 +321,7 @@ sub cleanup_child($$) if ($childpid == 0) { } elsif ($childpid < 0) { - printf STDERR "%s child process %d isn't here any more\n", + printf STDERR "%s child process %d isn't here any more\n", $name, $pid; return $childpid; } elsif ($? & 127) {