summaryrefslogtreecommitdiff
path: root/selftest/target
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2016-05-14 00:38:48 +0200
committerMichael Adam <obnox@samba.org>2016-05-24 10:12:19 +0200
commit7a3f0cfd6589023b2e66bf008966bdea785c18b9 (patch)
tree98f081384a86312e18f5425c6a78ab4109426b9c /selftest/target
parentb2b951d14fa9464cf2333e611e5b651e1d57cf01 (diff)
downloadsamba-7a3f0cfd6589023b2e66bf008966bdea785c18b9.tar.gz
selftest: fix printf in cleanup_child()
Signed-off-by: Michael Adam <obnox@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'selftest/target')
-rw-r--r--selftest/target/Samba.pm2
1 files changed, 1 insertions, 1 deletions
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) {