projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28d20e2
)
tracing: remove dangling semicolon
author
Steven Rostedt
<srostedt@redhat.com>
Mon, 20 Apr 2009 16:59:29 +0000
(12:59 -0400)
committer
Steven Rostedt
<rostedt@goodmis.org>
Mon, 20 Apr 2009 16:59:29 +0000
(12:59 -0400)
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>
include/linux/trace_seq.h
patch
|
blob
|
blame
|
history
diff --git
a/include/linux/trace_seq.h
b/include/linux/trace_seq.h
index 37db9bdfbc1a029e4229150b006cf07988c6ac93..ba9627f00d3f0e62e654689d4780619bd67f2853 100644
(file)
--- 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;
}