aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/util/trace-event-parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/trace-event-parse.c b/tools/perf/util/trace-event-parse.c
index 37b10c2cd3c9..629e602d9405 100644
--- a/tools/perf/util/trace-event-parse.c
+++ b/tools/perf/util/trace-event-parse.c
@@ -2708,9 +2708,9 @@ void print_event(int cpu, void *data, int size, unsigned long long nsecs,
2708 return pretty_print_func_graph(data, size, event, cpu, 2708 return pretty_print_func_graph(data, size, event, cpu,
2709 pid, comm, secs, usecs); 2709 pid, comm, secs, usecs);
2710 2710
2711 printf("%16s-%-5d [%03d] %5lu.%06lu: %s: ", 2711 printf("%16s-%-5d [%03d] %5lu.%09Lu: %s: ",
2712 comm, pid, cpu, 2712 comm, pid, cpu,
2713 secs, usecs, event->name); 2713 secs, nsecs, event->name);
2714 2714
2715 pretty_print(data, size, event); 2715 pretty_print(data, size, event);
2716 printf("\n"); 2716 printf("\n");