diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/read_mixer.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 1d8372a98..54c92eea3 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -25,6 +25,7 @@ #include "GlobalEvents.hxx" #include "Main.hxx" #include "event/Loop.hxx" +#include "ConfigData.hxx" #include <glib.h> @@ -125,7 +126,8 @@ int main(int argc, G_GNUC_UNUSED char **argv) main_loop = new EventLoop(EventLoop::Default()); - Mixer *mixer = mixer_new(&alsa_mixer_plugin, NULL, NULL, &error); + Mixer *mixer = mixer_new(&alsa_mixer_plugin, nullptr, + config_param(), &error); if (mixer == NULL) { g_printerr("mixer_new() failed: %s\n", error->message); g_error_free(error); |