diff options
author | Max Kellermann <max@duempel.org> | 2012-06-12 21:09:40 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-12 21:15:46 +0200 |
commit | d2d9b45a8189b7771e1b7dfbe7d5a550fcf400b8 (patch) | |
tree | 6e1653ab8cd563dd2e6c326d99fecda34d202fe6 /src/decoder_print.c | |
parent | 9ebbdb9b0b288164ce956ba34bc0c38f94868110 (diff) | |
download | mpd-d2d9b45a8189b7771e1b7dfbe7d5a550fcf400b8.tar.gz mpd-d2d9b45a8189b7771e1b7dfbe7d5a550fcf400b8.tar.xz mpd-d2d9b45a8189b7771e1b7dfbe7d5a550fcf400b8.zip |
decoder_list: add _for_each() macros
Diffstat (limited to '')
-rw-r--r-- | src/decoder_print.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/decoder_print.c b/src/decoder_print.c index a1c2da2e5..f859afe53 100644 --- a/src/decoder_print.c +++ b/src/decoder_print.c @@ -48,7 +48,6 @@ decoder_plugin_print(struct client *client, void decoder_list_print(struct client *client) { - for (unsigned i = 0; decoder_plugins[i] != NULL; ++i) - if (decoder_plugins_enabled[i]) - decoder_plugin_print(client, decoder_plugins[i]); + decoder_plugins_for_each_enabled(plugin) + decoder_plugin_print(client, plugin); } |