Commit cfd05623 authored by Max Kellermann's avatar Max Kellermann

output/alsa: use the EventLoop& parameter instead of io_thread_get()

parent b1c7649e
......@@ -32,7 +32,6 @@
#include "event/MultiSocketMonitor.hxx"
#include "event/DeferredMonitor.hxx"
#include "event/Call.hxx"
#include "IOThread.hxx"
#include "Log.hxx"
#include <alsa/asoundlib.h>
......@@ -429,9 +428,9 @@ AlsaOutput::AlsaOutput(EventLoop &loop, const ConfigBlock &block)
}
inline AlsaOutput *
AlsaOutput::Create(EventLoop &, const ConfigBlock &block)
AlsaOutput::Create(EventLoop &event_loop, const ConfigBlock &block)
{
return new AlsaOutput(io_thread_get(), block);
return new AlsaOutput(event_loop, block);
}
inline void
......
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