diff options
| author | Steven Rostedt <[email protected]> | 2009-04-17 17:17:55 -0400 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-04-18 09:49:10 +0200 |
| commit | 8e668b5b3455207e4540fc7ccab9ecf70142f288 (patch) | |
| tree | 7113a2b8902102f4e6a293d17b65acefce728c16 /include/linux | |
| parent | 3189cdb31622f4e40688ce5a6fc5d940b42bc805 (diff) | |
tracing: remove format attribute of inline function
Due to a cut and paste error, I added the gcc attribute for printf
format to the static inline stub of trace_seq_printf.
This will cause a compile failure.
[ Impact: fix compiler error when CONFIG_TRACING is off ]
Reported-by: Ingo Molnar <[email protected]>
Signed-off-by: Steven Rostedt <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: =?ISO-8859-15?Q?Fr=E9d=E9ric_Weisbecker?= <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/trace_seq.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index 15ca2c71af13..37db9bdfbc1a 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h @@ -42,7 +42,6 @@ extern int trace_seq_path(struct trace_seq *s, struct path *path); #else /* CONFIG_TRACING */ static inline int trace_seq_printf(struct trace_seq *s, const char *fmt, ...) - __attribute__ ((format (printf, 2, 3))) { return 0; } |