diff options
author | Mattias Andrée <maandree@kth.se> | 2020-06-02 14:46:38 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-06-02 14:46:38 +0200 |
commit | 13d284b1a9ef1b4343e06442eb76b564ddce1612 (patch) | |
tree | 7d48bc0d9ea57eefc0c17716b1ac04549b56a319 /print.c | |
parent | Some cleanup and preparation for support for multiple architectures (both host and client) and OSes (diff) | |
download | sctrace-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>
Diffstat (limited to '')
-rw-r--r-- | print.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |