aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-05-02 13:42:39 -0700
committerDavid S. Miller <davem@davemloft.net>2010-05-02 13:42:39 -0700
commit1183f3838c588545592c042c0ce15015661ce7f2 (patch)
tree24de17b69f9b2d83720a550af130d1dbddf067e8 /include
parentnet/usb: initiate sync sequence in sierra_net.c driver (diff)
downloadlinux-dev-1183f3838c588545592c042c0ce15015661ce7f2.tar.xz
linux-dev-1183f3838c588545592c042c0ce15015661ce7f2.zip
net: fix compile error due to double return type in SOCK_DEBUG
Fix this one: include/net/sock.h: error: two or more data types in declaration specifiers Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index b4603cd54fcd..1ad6435f252e 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -74,7 +74,7 @@
printk(KERN_DEBUG msg); } while (0)
#else
/* Validate arguments and do nothing */
-static void inline int __attribute__ ((format (printf, 2, 3)))
+static inline void __attribute__ ((format (printf, 2, 3)))
SOCK_DEBUG(struct sock *sk, const char *msg, ...)
{
}