Skip to content

Commit

Permalink
tracing: remove dangling semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed Apr 20, 2009
1 parent 28d20e2 commit 23de29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/trace_seq.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 23de29d

Please sign in to comment.