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/flac_plugin.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/flac_plugin.c')
-rw-r--r-- | src/decoder/flac_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/flac_plugin.c b/src/decoder/flac_plugin.c index 19f8d7fd4..ce056d298 100644 --- a/src/decoder/flac_plugin.c +++ b/src/decoder/flac_plugin.c @@ -383,7 +383,7 @@ flac_decode(struct decoder * decoder, struct input_stream *input_stream) #ifndef HAVE_OGGFLAC static bool -oggflac_init(void) +oggflac_init(G_GNUC_UNUSED const struct config_param *param) { #if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7 return !!FLAC_API_SUPPORTS_OGG_FLAC; |