Commit 3c4cd9d0 authored by Max Kellermann's avatar Max Kellermann

input/alsa: fix build with gcc 4.6

parent fdb02ee5
......@@ -191,16 +191,16 @@ alsa_input_eof(gcc_unused InputStream *is)
};
const struct InputPlugin input_plugin_alsa = {
.name = "alsa",
.init = nullptr,
.finish = nullptr,
.open = alsa_input_open,
.close = alsa_input_close,
.check = nullptr,
.update = nullptr,
.tag = nullptr,
.available = nullptr,
.read = alsa_input_read,
.eof = alsa_input_eof,
.seek = nullptr
"alsa",
nullptr,
nullptr,
alsa_input_open,
alsa_input_close,
nullptr,
nullptr,
nullptr,
nullptr,
alsa_input_read,
alsa_input_eof,
nullptr,
};
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