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.
This commit is contained in:
Max Kellermann 2008-09-07 19:19:48 +02:00
parent 3553ed2f9b
commit bd81fd8b0c

View File

@ -277,6 +277,7 @@ static int print_playlist_result(struct client *client,
}
assert(0);
return -1;
}
static void addCommand(const char *name,