[spotify] Add missing return() in librespot-c channel.c

This commit is contained in:
ejurgensen 2022-01-11 20:11:35 +01:00
parent 6a0c7db50a
commit 021a53aa64

View File

@ -224,7 +224,7 @@ channel_seek_internal(struct sp_channel *channel, size_t pos, bool do_flush)
int
channel_seek(struct sp_channel *channel, size_t pos)
{
channel_seek_internal(channel, pos, true); // true -> request flush
return channel_seek_internal(channel, pos, true); // true -> request flush
}
void