The flyrecord dump prints various file offsets and sizes, that can be huge numbers. Add format arguments to align better the output. Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@xxxxxxxxx> --- tracecmd/trace-dump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tracecmd/trace-dump.c b/tracecmd/trace-dump.c index 57132c52..0267834d 100644 --- a/tracecmd/trace-dump.c +++ b/tracecmd/trace-dump.c @@ -897,7 +897,7 @@ static void dump_flyrecord(int fd) die("cannot read the cpu %d offset", i); if (read_file_number(fd, &cpu_size, 8)) die("cannot read the cpu %d size", i); - do_print(FLYRECORD, "\t\t %lld %lld\t[offset, size of cpu %d]\n", + do_print(FLYRECORD, "\t %10.lld %10.lld\t[offset, size of cpu %d]\n", cpu_offset, cpu_size, i); } dump_clock(fd); @@ -1154,6 +1154,7 @@ void trace_dump(int argc, char **argv) case OPT_verbose: if (trace_set_verbose(optarg) < 0) die("invalid verbose level %s", optarg); + break; case OPT_sections: verbosity |= SECTIONS; break; -- 2.31.1