ls: renamed functions, no CamelCase

This commit is contained in:
Max Kellermann
2009-01-04 17:46:42 +01:00
parent 6a008b52d1
commit 45597cc571
6 changed files with 29 additions and 18 deletions

View File

@@ -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);