From: Roland McGrath Date: Fri, 4 Jun 2004 01:24:07 +0000 (+0000) Subject: 2004-04-19 Roland McGrath X-Git-Tag: v4.5.18~587 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8cc83c9efc0f33e721ec7f05eacc20c729da757;p=strace 2004-04-19 Roland McGrath * process.c (printstatus): Add a space before | in output. --- diff --git a/process.c b/process.c index ee091175..038fc14e 100644 --- a/process.c +++ b/process.c @@ -1820,7 +1820,7 @@ int status; if (status == 0) tprintf("]"); else - tprintf("| %#x]", status); + tprintf(" | %#x]", status); return exited; }