From: Michael Adam Date: Fri, 13 May 2016 22:44:18 +0000 (+0200) Subject: selftest: improve misleading indentation in cleanup_child() X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=e06d01647ea406e38627d644d21d1f9361683550 selftest: improve misleading indentation 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 7bab462e0e6..83e2d6b6310 100644 --- a/selftest/target/Samba.pm +++ b/selftest/target/Samba.pm @@ -326,7 +326,7 @@ sub cleanup_child($$) } elsif ($? & 127) { printf STDERR "%s child process %d, died with signal %d, %s coredump\n", - $name, $childpid, ($? & 127), ($? & 128) ? 'with' : 'without'; + $name, $childpid, ($? & 127), ($? & 128) ? 'with' : 'without'; } else { printf STDERR "%s child process %d exited with value %d\n", $name, $childpid, $? >> 8; }