diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 11:30:26 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 13:30:47 +0200 |
commit | 7a1d466fb279659048e80e2853a7906c90d73235 (patch) | |
tree | f0c73e11b86b584a1a3f230507eabcf6f02986ea /src/decoder/FlacDecoderPlugin.cxx | |
parent | 83f4c48c8aaa46bbede4447c95939af310ea28ad (diff) | |
download | mpd-7a1d466fb279659048e80e2853a7906c90d73235.tar.gz mpd-7a1d466fb279659048e80e2853a7906c90d73235.tar.xz mpd-7a1d466fb279659048e80e2853a7906c90d73235.zip |
DecoderPlugin: pass config_param reference
Diffstat (limited to '')
-rw-r--r-- | src/decoder/FlacDecoderPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/FlacDecoderPlugin.cxx b/src/decoder/FlacDecoderPlugin.cxx index 7becf73e5..d228c41b9 100644 --- a/src/decoder/FlacDecoderPlugin.cxx +++ b/src/decoder/FlacDecoderPlugin.cxx @@ -287,7 +287,7 @@ flac_decode(struct decoder * decoder, struct input_stream *input_stream) } static bool -oggflac_init(G_GNUC_UNUSED const struct config_param *param) +oggflac_init(gcc_unused const config_param ¶m) { return !!FLAC_API_SUPPORTS_OGG_FLAC; } |