aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Ahern <[email protected]>2012-10-08 11:17:34 -0600
committerArnaldo Carvalho de Melo <[email protected]>2012-10-08 17:15:25 -0300
commite4f7637f8aefa2ad5159a1cda46fedea6eaf64fc (patch)
tree52851c9c02c4c8acdf0a08dccb55e49403856212
parentb880deeaffd9df0cec9a4496447d0d7fd78086f2 (diff)
perf kvm: Total count is a u64, print as so
remove cast and use proper type in format. Signed-off-by: David Ahern <[email protected]> Cc: Dong Hao <[email protected]> Cc: Frederic Weisbecker <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Xiao Guangrong <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r--tools/perf/builtin-kvm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-kvm.c b/tools/perf/builtin-kvm.c
index 8416754b2bc3..72a302e7807e 100644
--- a/tools/perf/builtin-kvm.c
+++ b/tools/perf/builtin-kvm.c
@@ -673,8 +673,8 @@ static void print_result(struct perf_kvm *kvm)
pr_info("\n");
}
- pr_info("\nTotal Samples:%lld, Total events handled time:%.2fus.\n\n",
- (unsigned long long)kvm->total_count, kvm->total_time / 1e3);
+ pr_info("\nTotal Samples:%" PRIu64 ", Total events handled time:%.2fus.\n\n",
+ kvm->total_count, kvm->total_time / 1e3);
}
static int process_sample_event(struct perf_tool *tool,