From 62b58a361fccec935d7940fb7ab86508ccdceb00 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 3 Sep 2014 16:55:59 +0200 Subject: 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 --- staging/mops_sequence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'staging/mops_sequence.c') diff --git a/staging/mops_sequence.c b/staging/mops_sequence.c index 32e7895..900472c 100644 --- a/staging/mops_sequence.c +++ b/staging/mops_sequence.c @@ -286,7 +286,7 @@ int stop_sequence (char *name) // // RETURN VALUE: Number of stopped sequences. // -int stop_all_sequences () +int stop_all_sequences(void) { struct mz_ll *cur=packet_sequences->next; int i=0; -- cgit v1.2.3-54-g00ecf