diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 10:20:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 10:20:57 +0200 |
commit | 24780d99e61af44141e8f0d0d0776a1c994e6770 (patch) | |
tree | 23cc5597c41d9031eb74892ef7d7c0e5eceb05fd /src/InputRegistry.hxx | |
parent | 7c1cf617282c591dff85df164c178198a0ce7738 (diff) | |
download | mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.gz mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.xz mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.zip |
input_plugin: rename struct to "InputPlugin"
Diffstat (limited to '')
-rw-r--r-- | src/InputRegistry.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/InputRegistry.hxx b/src/InputRegistry.hxx index a080d108b..8bc927a7a 100644 --- a/src/InputRegistry.hxx +++ b/src/InputRegistry.hxx @@ -26,12 +26,12 @@ * NULL terminated list of all input plugins which were enabled at * compile time. */ -extern const struct input_plugin *const input_plugins[]; +extern const struct InputPlugin *const input_plugins[]; extern bool input_plugins_enabled[]; #define input_plugins_for_each(plugin) \ - for (const struct input_plugin *plugin, \ + for (const InputPlugin *plugin, \ *const*input_plugin_iterator = &input_plugins[0]; \ (plugin = *input_plugin_iterator) != NULL; \ ++input_plugin_iterator) |