diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-01-16 05:00:50 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-16 14:17:38 +0300 |
commit | 5e4abc9839191e213965e0f1dbf36e2e44356c3a (patch) | |
tree | f2dee1eed74ef80778dc098114092baf0229e2ac /kernel/trace/trace_output.c | |
parent | c37abc5515b5ed5b1d2134d2deaead492d9f92a2 (diff) | |
download | linux-5e4abc9839191e213965e0f1dbf36e2e44356c3a.tar.xz |
trace: clean up format errors in calls to trace_seq_printf
After adding the printf format checking for trace_seq_printf, several
warnings now show up. This patch cleans them up.
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/trace/trace_output.c')
-rw-r--r-- | kernel/trace/trace_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c index 4e3ad36b117c..1a4e144a9f8f 100644 --- a/kernel/trace/trace_output.c +++ b/kernel/trace/trace_output.c @@ -440,7 +440,7 @@ trace_fn_raw(struct trace_seq *s, struct trace_entry *entry, int flags) trace_assign_type(field, entry); - if (!trace_seq_printf(s, "%x %x\n", + if (!trace_seq_printf(s, "%lx %lx\n", field->ip, field->parent_ip)) return TRACE_TYPE_PARTIAL_LINE; |