aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2020-06-02 14:46:38 +0200
committerMattias Andrée <maandree@kth.se>2020-06-02 14:46:38 +0200
commit13d284b1a9ef1b4343e06442eb76b564ddce1612 (patch)
tree7d48bc0d9ea57eefc0c17716b1ac04549b56a319
parentSome cleanup and preparation for support for multiple architectures (both host and client) and OSes (diff)
downloadsctrace-13d284b1a9ef1b4343e06442eb76b564ddce1612.tar.gz
sctrace-13d284b1a9ef1b4343e06442eb76b564ddce1612.tar.bz2
sctrace-13d284b1a9ef1b4343e06442eb76b564ddce1612.tar.xz
Do not use \t in traces, does not look good with PID prefixes in the output
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.c b/print.c
index ddd5a7c..206758d 100644
--- a/print.c
+++ b/print.c
@@ -962,7 +962,7 @@ print_systemcall_exit(struct process *proc)
for (i = 0; i < 6; i++) {
if (!proc->args[i] || !proc->outputs[i].fmt)
continue;
- tprintf(proc, "\tOutput to parameter %zu: ", i + 1);
+ tprintf(proc, " Output to parameter %zu: ", i + 1);
switch (proc->outputs[i].fmt) {
case 'p':