diff options
Diffstat (limited to '')
-rw-r--r-- | src/zeroconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zeroconf.c b/src/zeroconf.c index cd54d9669..7ae6dfecd 100644 --- a/src/zeroconf.c +++ b/src/zeroconf.c @@ -46,11 +46,11 @@ #include <avahi-common/error.h> /* Static avahi data */ -static AvahiEntryGroup *avahiGroup = NULL; -static char *avahiName = NULL; -static AvahiClient* avahiClient = NULL; +static AvahiEntryGroup *avahiGroup; +static char *avahiName; +static AvahiClient* avahiClient; static AvahiPoll avahiPoll; -static int avahiRunning = 0; +static int avahiRunning; static int avahiFdset( fd_set* rfds, fd_set* wfds, fd_set* efds ); static int avahiFdconsume( int fdCount, fd_set* rfds, fd_set* wfds, fd_set* efds ); |