diff options
author | Max Kellermann <max@duempel.org> | 2009-02-15 18:34:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-15 18:34:14 +0100 |
commit | dec5d48f80428575c7a1b9eeba961b0055156500 (patch) | |
tree | 2b13402d6e5bbf72a0ae658b546454a83538dc93 /src/decoder_list.c | |
parent | 900784bb4ebd6613223164e222f19abd3a312a93 (diff) | |
download | mpd-dec5d48f80428575c7a1b9eeba961b0055156500.tar.gz mpd-dec5d48f80428575c7a1b9eeba961b0055156500.tar.xz mpd-dec5d48f80428575c7a1b9eeba961b0055156500.zip |
decoder_plugin: pass struct config_param to init() method
Preparing for per-plugin configuration sections in mpd.conf.
Diffstat (limited to 'src/decoder_list.c')
-rw-r--r-- | src/decoder_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder_list.c b/src/decoder_list.c index ba179ee70..f0cf8625b 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -190,7 +190,7 @@ void decoder_plugin_init_all(void) for (unsigned i = 0; i < num_decoder_plugins; ++i) { const struct decoder_plugin *plugin = decoder_plugins[i]; - if (decoder_plugin_init(plugin)) + if (decoder_plugin_init(plugin, NULL)) decoder_plugins_enabled[i] = true; } } |