diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
commit | e754ed01a77a0dfb5039148cd4990a669ea9024c (patch) | |
tree | e759b3b1aae66fa75bbe36aee62476d3cb87d876 /src/ls.c | |
parent | 772d3da98a31b5cefa9d4de0dd5056fb19eae00f (diff) | |
download | mpd-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 '')
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |