diff options
author | Max Kellermann <max@duempel.org> | 2014-02-05 17:25:47 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-05 17:25:47 +0100 |
commit | 855f26c43d0a9346e6670f09325f1e2b4d354757 (patch) | |
tree | 7543bbc8b3ab1991b8cb28995c075558f239ff50 /src/mixer/MixerControl.hxx | |
parent | f86e15953621901c468bfc2a1140c854a91b5a16 (diff) | |
download | mpd-855f26c43d0a9346e6670f09325f1e2b4d354757.tar.gz mpd-855f26c43d0a9346e6670f09325f1e2b4d354757.tar.xz mpd-855f26c43d0a9346e6670f09325f1e2b4d354757.zip |
Mixer: use reference instead of pointer for MixerPlugin
Diffstat (limited to 'src/mixer/MixerControl.hxx')
-rw-r--r-- | src/mixer/MixerControl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixer/MixerControl.hxx b/src/mixer/MixerControl.hxx index 8be4e9f63..cc2ccc087 100644 --- a/src/mixer/MixerControl.hxx +++ b/src/mixer/MixerControl.hxx @@ -32,7 +32,7 @@ struct MixerPlugin; struct config_param; Mixer * -mixer_new(EventLoop &event_loop, const MixerPlugin *plugin, void *ao, +mixer_new(EventLoop &event_loop, const MixerPlugin &plugin, void *ao, const config_param ¶m, Error &error); |