summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-04-20 18:59:29 +0200
committerSteven Rostedt <rostedt@goodmis.org>2009-04-20 18:59:29 +0200
commit23de29de2d8b227943be191d59fb6d983996d55e (patch)
tree37490cfd704e57df2a8fe9b8ab7ea84021ec4d78
parenttracing/events: call the correct event trace selftest init function (diff)
downloadlinux-23de29de2d8b227943be191d59fb6d983996d55e.tar.xz
linux-23de29de2d8b227943be191d59fb6d983996d55e.zip
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.h2
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;
}