From e06d01647ea406e38627d644d21d1f9361683550 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 14 May 2016 00:44:18 +0200 Subject: [PATCH] selftest: improve misleading indentation in cleanup_child() Signed-off-by: Michael Adam Reviewed-by: Andreas Schneider --- selftest/target/Samba.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest/target/Samba.pm b/selftest/target/Samba.pm index 7bab462e0e6b..83e2d6b6310e 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; } -- 2.34.1