aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-26 08:27:09 +0200
committerMax Kellermann <max@duempel.org>2008-08-26 08:27:09 +0200
commite754ed01a77a0dfb5039148cd4990a669ea9024c (patch)
treee759b3b1aae66fa75bbe36aee62476d3cb87d876 /src/ls.c
parent772d3da98a31b5cefa9d4de0dd5056fb19eae00f (diff)
downloadmpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.gz
mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.xz
mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.zip
renamed functions in decoder_list.h
InputPlugin to decoder_plugin, and no camelCase.
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ls.c b/src/ls.c
index 26b2339c2..a9a2388fc 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -263,7 +263,7 @@ struct decoder_plugin *hasMusicSuffix(const char *utf8file, unsigned int next)
const char *s = getSuffix(utf8file);
if (s) {
- ret = getInputPluginFromSuffix(s, next);
+ ret = decoder_plugin_from_suffix(s, next);
} else {
DEBUG("hasMusicSuffix: The file: %s has no valid suffix\n",
utf8file);