2004-04-19 Roland McGrath <roland@redhat.com>

* process.c (printstatus): Add a space before | in output.
This commit is contained in:
Roland McGrath 2004-06-04 01:24:07 +00:00
parent 252b185634
commit f8cc83c9ef

View File

@ -1820,7 +1820,7 @@ int status;
if (status == 0)
tprintf("]");
else
tprintf("| %#x]", status);
tprintf(" | %#x]", status);
return exited;
}