diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/tcp_probe.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c index 760165a0800c..d9323dfff826 100644 --- a/net/ipv4/tcp_probe.c +++ b/net/ipv4/tcp_probe.c | |||
@@ -63,6 +63,9 @@ struct { | |||
63 | * FIXME: causes an extra copy | 63 | * FIXME: causes an extra copy |
64 | */ | 64 | */ |
65 | static void printl(const char *fmt, ...) | 65 | static void printl(const char *fmt, ...) |
66 | __attribute__ ((format (printf, 1, 2))); | ||
67 | |||
68 | static void printl(const char *fmt, ...) | ||
66 | { | 69 | { |
67 | va_list args; | 70 | va_list args; |
68 | int len; | 71 | int len; |
@@ -80,8 +83,7 @@ static void printl(const char *fmt, ...) | |||
80 | 83 | ||
81 | kfifo_put(tcpw.fifo, tbuf, len); | 84 | kfifo_put(tcpw.fifo, tbuf, len); |
82 | wake_up(&tcpw.wait); | 85 | wake_up(&tcpw.wait); |
83 | } __attribute__ ((format (printf, 1, 2))); | 86 | } |
84 | |||
85 | 87 | ||
86 | /* | 88 | /* |
87 | * Hook inserted to be called before each receive packet. | 89 | * Hook inserted to be called before each receive packet. |