Commit bd81fd8b authored by Max Kellermann's avatar Max Kellermann

playlist: return -1 after assert(0)

print_playlist_result() had an assert(0) at the end, in case there was an invalid result value. With NDEBUG, this resulted in a function not returning a value - add a dummy "return -1" at the end to keep gcc quiet.
parent 3553ed2f
......@@ -277,6 +277,7 @@ static int print_playlist_result(struct client *client,
}
assert(0);
return -1;
}
static void addCommand(const char *name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment