diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-04-20 12:59:29 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-04-20 12:59:29 -0400 |
commit | 23de29de2d8b227943be191d59fb6d983996d55e (patch) | |
tree | 37490cfd704e57df2a8fe9b8ab7ea84021ec4d78 | |
parent | 28d20e2d6e94434827e11c310788b87204b84559 (diff) | |
download | linux-23de29de2d8b227943be191d59fb6d983996d55e.tar.bz2 |
tracing: remove dangling semicolon
Due to a cut and paste error, the trace_seq_putc had a semicolon
after the prototype but before the stub function when tracing is
disabled.
[Impact: fix compile error ]
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | include/linux/trace_seq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index 37db9bdfbc1a..ba9627f00d3f 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h @@ -63,7 +63,7 @@ static inline int trace_seq_puts(struct trace_seq *s, const char *str) { return 0; } -static inline int trace_seq_putc(struct trace_seq *s, unsigned char c); +static inline int trace_seq_putc(struct trace_seq *s, unsigned char c) { return 0; } |