summaryrefslogtreecommitdiff
path: root/staging/mops.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/mops.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/mops.c')
-rw-r--r--staging/mops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/staging/mops.c b/staging/mops.c
index f56deff..599d317 100644
--- a/staging/mops.c
+++ b/staging/mops.c
@@ -52,7 +52,7 @@
// Creates first element, aka "head" element
// This element can also be used! See mops_alloc_packet!
//
-struct mops * mops_init()
+struct mops * mops_init(void)
{
// these defaults can be changed by the user:
min_frame_s = MIN_MOPS_FRAME_SIZE; // important global; depends on used packet tx subsystem such as libnet