Commit 2dc3acc5 authored by Max Kellermann's avatar Max Kellermann

output/pulse: return 0 on error

Not a bool.
parent 25686e5b
......@@ -697,7 +697,7 @@ pulse_output_play(void *data, const void *chunk, size_t size, GError **error_r)
pa_threaded_mainloop_unlock(po->mainloop);
g_set_error(error_r, pulse_output_quark(), 0,
"disconnected");
return false;
return 0;
}
}
......
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