aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/trace_seq.h
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-04-20 12:59:29 -0400
committerSteven Rostedt <rostedt@goodmis.org>2009-04-20 12:59:29 -0400
commit23de29de2d8b227943be191d59fb6d983996d55e (patch)
tree37490cfd704e57df2a8fe9b8ab7ea84021ec4d78 /include/linux/trace_seq.h
parent28d20e2d6e94434827e11c310788b87204b84559 (diff)
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>
Diffstat (limited to 'include/linux/trace_seq.h')
-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)
63{ 63{
64 return 0; 64 return 0;
65} 65}
66static inline int trace_seq_putc(struct trace_seq *s, unsigned char c); 66static inline int trace_seq_putc(struct trace_seq *s, unsigned char c)
67{ 67{
68 return 0; 68 return 0;
69} 69}