summaryrefslogtreecommitdiff
path: root/staging/layer3.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2014-09-03 16:55:59 +0200
committerTobias Klauser <tklauser@distanz.ch>2014-09-03 16:55:59 +0200
commit62b58a361fccec935d7940fb7ab86508ccdceb00 (patch)
treece2b86398f9f9b96aea8c5268ab2e1db15bf8148 /staging/layer3.c
parent82042e7d91732ec0710c55358d86baafe24c4756 (diff)
mausezahn: Fix non-ANSI function declarations
ANSI C doesn't allow empty parameter list, thus use void where appropriate. This fixes the corresponding sparse warning. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'staging/layer3.c')
-rw-r--r--staging/layer3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/staging/layer3.c b/staging/layer3.c
index d05aa3c..3eca55d 100644
--- a/staging/layer3.c
+++ b/staging/layer3.c
@@ -104,7 +104,7 @@
// Only used to simplify initialization of libnet
// Return pointer to context
-libnet_t* get_link_context()
+libnet_t* get_link_context(void)
{
libnet_t * l;
char errbuf[LIBNET_ERRBUF_SIZE];