perf hists browser: Change print format from %lu to %PRIu64
authorTom Huynh <tom.huynh@freescale.com>
Tue, 2 Dec 2014 17:37:22 +0000 (11:37 -0600)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 9 Dec 2014 12:14:32 +0000 (09:14 -0300)
The nr_events variable in tools/perf/ui/browsers/hists.c is of type u64,
so the print format (%lu) causes 'perf report' to show 0 event count
when running with 32-bit userspace without redirection.

This patch fixes that problem by printing nr_events as PRIu64.

Signed-off-by: Tom Huynh <tom.huynh@freescale.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kim Phillips <kim.phillips@freescale.com>
Cc: Matt Mullins <mmullins@mmlx.us>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1417541842-9747-1-git-send-email-tom.huynh@freescale.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/browsers/hists.c

index 502daff76ceba70be29243aecc13bab3040c0a20..e6bb04b5b09b863013e4d361120269d59f6207c6 100644 (file)
@@ -1252,7 +1252,7 @@ static int hists__browser_title(struct hists *hists,
 
        nr_samples = convert_unit(nr_samples, &unit);
        printed = scnprintf(bf, size,
-                          "Samples: %lu%c of event '%s', Event count (approx.): %lu",
+                          "Samples: %lu%c of event '%s', Event count (approx.): %" PRIu64,
                           nr_samples, unit, ev_name, nr_events);
 
 
This page took 0.026537 seconds and 5 git commands to generate.