From: Steven Rostedt Date: Fri, 13 Jun 2014 14:31:27 +0000 (-0400) Subject: tools lib traceevent: Fix format in plugin_kvm X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a21e3a34bef9e9c177be61111ced23e71e25fd8a;p=deliverable%2Flinux.git tools lib traceevent: Fix format in plugin_kvm The format field argument passed to the format in pevent_print_num_field() will be of type long long. That means that %ll must be used instead of %l. Acked-by: Namhyung Kim Reported-by: Namhyung Kim Signed-off-by: Steven Rostedt Link: http://lkml.kernel.org/r/20140613103127.1a9bdee7@gandalf.local.home Signed-off-by: Jiri Olsa --- diff --git a/tools/lib/traceevent/plugin_kvm.c b/tools/lib/traceevent/plugin_kvm.c index 0575e59c65f0..88fe83dff7cd 100644 --- a/tools/lib/traceevent/plugin_kvm.c +++ b/tools/lib/traceevent/plugin_kvm.c @@ -344,7 +344,7 @@ static int kvm_nested_vmexit_inject_handler(struct trace_seq *s, struct pevent_r static int kvm_nested_vmexit_handler(struct trace_seq *s, struct pevent_record *record, struct event_format *event, void *context) { - pevent_print_num_field(s, "rip %lx ", event, "rip", record, 1); + pevent_print_num_field(s, "rip %llx ", event, "rip", record, 1); return kvm_nested_vmexit_inject_handler(s, record, event, context); }