selftest: improve misleading indentation in cleanup_child()
authorMichael Adam <obnox@samba.org>
Fri, 13 May 2016 22:44:18 +0000 (00:44 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 24 May 2016 08:12:19 +0000 (10:12 +0200)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
selftest/target/Samba.pm

index 7bab462e0e6b4db740b0a6509b01db918abee00d..83e2d6b6310eac814e5edbcbabd9c69d68a6c9b4 100644 (file)
@@ -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;
     }