aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-04 17:46:42 +0100
committerMax Kellermann <max@duempel.org>2009-01-04 17:46:42 +0100
commit45597cc57171484bd59a4ad8f64434090835f93b (patch)
treec2893a1aa9e714f2e71de919bf8ad9572ec4c252 /src/decoder_thread.c
parent6a008b52d1004f56182911f2a635136d0d097918 (diff)
downloadmpd-45597cc57171484bd59a4ad8f64434090835f93b.tar.gz
mpd-45597cc57171484bd59a4ad8f64434090835f93b.tar.xz
mpd-45597cc57171484bd59a4ad8f64434090835f93b.zip
ls: renamed functions, no CamelCase
Diffstat (limited to '')
-rw-r--r--src/decoder_thread.c4
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);