提交 23de29de 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

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: NSteven Rostedt <rostedt@goodmis.org>
上级 28d20e2d
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册