From b266264b09cc042bff34bb6ea09c2cc406da56c1 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 26 Nov 2015 18:10:47 +0100 Subject: [PATCH] pulse backend: correct declaration of function with no parameters We have to use void in a function declaration if we want no function parameters. Using just empty parenthesis means the function takes an unspecified number of parameters. We had it correct for most declarations and this series fixes it for the rest. Thanks for the sparse semantic parser for pointing this out. --- src/modules/mixer/lib/backends/pulseaudio/pulse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/mixer/lib/backends/pulseaudio/pulse.c b/src/modules/mixer/lib/backends/pulseaudio/pulse.c index da83487dd..f88273477 100644 --- a/src/modules/mixer/lib/backends/pulseaudio/pulse.c +++ b/src/modules/mixer/lib/backends/pulseaudio/pulse.c @@ -672,7 +672,7 @@ _subscribe_cb(pa_context *c, pa_subscription_event_type_t t, } static Eina_Bool _pulse_connect(void *data); -static void _disconnect_cb(); +static void _disconnect_cb(void); static void _pulse_pa_state_cb(pa_context *context, void *data)