diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 4 | ||||
-rw-r--r-- | src/listen.c | 6 | ||||
-rw-r--r-- | src/log.h | 2 | ||||
-rw-r--r-- | src/state_file.c | 1 |
4 files changed, 5 insertions, 8 deletions
diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 294d6a152..a58ece755 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -158,9 +158,7 @@ static int myShout_initDriver(AudioOutput * audioOutput, ConfigParam * param) if (blockParam) { if (0 == strcmp(blockParam->value, "yes")) { public = 1; - } else if (0 == strcmp(blockParam->value, "no")) { - public = 0; - } else { + } else if (strcmp(blockParam->value, "no")) { FATAL("public \"%s\" is not \"yes\" or \"no\" at line " "%i\n", param->value, param->line); } diff --git a/src/listen.c b/src/listen.c index 9d105e815..8b89ee33a 100644 --- a/src/listen.c +++ b/src/listen.c @@ -53,7 +53,7 @@ int boundPort; static int establishListen(unsigned int port, struct sockaddr *addrp, socklen_t addrlen) { - int pf = 0; + int pf; int sock; int allowReuse = ALLOW_REUSE; @@ -105,8 +105,8 @@ static int establishListen(unsigned int port, static void parseListenConfigParam(unsigned int port, ConfigParam * param) { - struct sockaddr *addrp = NULL; - socklen_t addrlen = 0; + struct sockaddr *addrp; + socklen_t addrlen; struct sockaddr_in sin; #ifdef HAVE_IPV6 struct sockaddr_in6 sin6; @@ -33,7 +33,7 @@ mpd_printf void LOG(const char *fmt, ...); mpd_printf void SECURE(const char *fmt, ...); mpd_printf void DEBUG(const char *fmt, ...); mpd_printf void WARNING(const char *fmt, ...); -mpd_printf void FATAL(const char *fmt, ...); +mpd_printf mpd_noreturn void FATAL(const char *fmt, ...); void initLog(const int verbose); diff --git a/src/state_file.c b/src/state_file.c index ac2fcde7a..1b0b41f1a 100644 --- a/src/state_file.c +++ b/src/state_file.c @@ -106,6 +106,5 @@ void read_state_file(void) void mpd_noreturn state_file_fatal(void) { FATAL("error parsing state file \"%s\"\n", sfpath); - exit(EXIT_FAILURE); } |