Commit 194f733c authored by Max Kellermann's avatar Max Kellermann

output/MultipleOutputs: use LoadOutputControl() in AddNullOutput()

parent 3907ddbc
......@@ -126,10 +126,10 @@ MultipleOutputs::AddNullOutput(EventLoop &event_loop,
ConfigBlock block;
block.AddBlockParam("type", "null");
auto output = LoadOutput(event_loop, replay_gain_config,
auto *output = LoadOutputControl(event_loop, replay_gain_config,
mixer_listener,
client, block);
outputs.push_back(new AudioOutputControl(output));
outputs.push_back(output);
}
AudioOutputControl *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment