diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_api.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/decoder_api.c b/src/decoder_api.c index 1f5db3b72..76bf05754 100644 --- a/src/decoder_api.c +++ b/src/decoder_api.c @@ -57,10 +57,9 @@ void decoder_initialized(struct decoder * decoder, notify_signal(&pc.notify); } -const char *decoder_get_url(G_GNUC_UNUSED struct decoder * decoder, - char * buffer) +char *decoder_get_uri(G_GNUC_UNUSED struct decoder *decoder) { - return song_get_url(dc.current_song, buffer); + return song_get_uri(dc.current_song); } enum decoder_command decoder_get_command(G_GNUC_UNUSED struct decoder * decoder) |