[PATCH] perf hist browser: change print format from lu to llu to fit u64 type

From: Tom Huynh
Date: Tue Nov 18 2014 - 18:16:11 EST


nr_events in tools/perf/ui/browsers/hists.c is of type u64, thus it should
be printed as %llu instead of %lu. 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.

Signed-off-by: Tom Huynh <tom.huynh@xxxxxxxxxxxxx>
---
tools/perf/ui/browsers/hists.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c
index cfb976b..49b2471 100644
--- a/tools/perf/ui/browsers/hists.c
+++ b/tools/perf/ui/browsers/hists.c
@@ -1254,7 +1254,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.): %llu",
nr_samples, unit, ev_name, nr_events);


--
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/