diff options
author | Max Kellermann <max@duempel.org> | 2014-01-28 11:22:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-28 11:33:15 +0100 |
commit | e0dc721324f34d8b3803dce64545871aec42e537 (patch) | |
tree | 5cc5177d022bf337e2dcc80ef1cc5a88f70d8fba /src/output/OutputList.cxx | |
parent | 2f873edc9c61a55c7a524a48f16cb197cd08b37d (diff) | |
download | mpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.gz mpd-e0dc721324f34d8b3803dce64545871aec42e537.tar.xz mpd-e0dc721324f34d8b3803dce64545871aec42e537.zip |
OutputPlugin: rename struct audio_output_plugin to AudioOutputPlugin
Diffstat (limited to 'src/output/OutputList.cxx')
-rw-r--r-- | src/output/OutputList.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output/OutputList.cxx b/src/output/OutputList.cxx index b914e6d2e..c523d4cbc 100644 --- a/src/output/OutputList.cxx +++ b/src/output/OutputList.cxx @@ -39,7 +39,7 @@ #include <string.h> -const struct audio_output_plugin *const audio_output_plugins[] = { +const AudioOutputPlugin *const audio_output_plugins[] = { #ifdef HAVE_SHOUT &shout_output_plugin, #endif @@ -89,8 +89,8 @@ const struct audio_output_plugin *const audio_output_plugins[] = { nullptr }; -const struct audio_output_plugin * -audio_output_plugin_get(const char *name) +const AudioOutputPlugin * +AudioOutputPlugin_get(const char *name) { audio_output_plugins_for_each(plugin) if (strcmp(plugin->name, name) == 0) |