diff --git a/src/log.c b/src/log.c index 47419eec5..73f2cb3ce 100644 --- a/src/log.c +++ b/src/log.c @@ -210,9 +210,11 @@ parse_log_level(const char *value, unsigned line) return LOG_LEVEL_SECURE; else if (0 == strcmp(value, "verbose")) return G_LOG_LEVEL_DEBUG; - else + else { g_error("unknown log level \"%s\" at line %u\n", value, line); + return G_LOG_LEVEL_MESSAGE; + } } void log_init(bool verbose, bool use_stdout) diff --git a/src/pcm_convert.c b/src/pcm_convert.c index 67aed8185..2209249a6 100644 --- a/src/pcm_convert.c +++ b/src/pcm_convert.c @@ -145,6 +145,7 @@ size_t pcm_convert(const struct audio_format *inFormat, default: g_error("cannot convert to %u bit\n", outFormat->bits); + return 0; } }