diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c index e6e521764..061048d94 100644 --- a/src/decoder_thread.c +++ b/src/decoder_thread.c @@ -142,7 +142,7 @@ static void decoder_run_song(const struct song *song, const char *uri) /* if that fails, try suffix matching the URL: */ if (plugin == NULL) { - const char *s = getSuffix(uri); + const char *s = uri_get_suffix(uri); next = 0; while ((plugin = decoder_plugin_from_suffix(s, next++))) { if (plugin->stream_decode == NULL) @@ -169,7 +169,7 @@ static void decoder_run_song(const struct song *song, const char *uri) } } else { unsigned int next = 0; - const char *s = getSuffix(uri); + const char *s = uri_get_suffix(uri); while ((plugin = decoder_plugin_from_suffix(s, next++))) { if (plugin->file_decode != NULL) { input_stream_close(&input_stream); |