[pulseaudio-commits] src/modules

Tanu Kaskinen tanuk at kemper.freedesktop.org
Mon May 7 14:01:41 UTC 2018


 src/modules/module-allow-passthrough.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit efba6e3b302e2bf8a043a6127bba030cb733d392
Author: Tanu Kaskinen <tanuk at iki.fi>
Date:   Sat May 5 17:22:46 2018 +0300

    allow-passthrough: fix hook return value
    
    -PA_ERR_NOENTITY is not a valid pa_hook_result_t value.

diff --git a/src/modules/module-allow-passthrough.c b/src/modules/module-allow-passthrough.c
index f7c61559..7fbef09e 100644
--- a/src/modules/module-allow-passthrough.c
+++ b/src/modules/module-allow-passthrough.c
@@ -177,7 +177,7 @@ static pa_hook_result_t sink_input_new_cb(pa_core *core, pa_sink_input_new_data
      * format). */
     if (!new_data->sink) {
         pa_sink *sink = pa_namereg_get(core, NULL, PA_NAMEREG_SINK);
-        pa_return_val_if_fail(sink, -PA_ERR_NOENTITY);
+        pa_return_val_if_fail(sink, PA_HOOK_OK);
         pa_sink_input_new_data_set_sink(new_data, sink, false, false);
     }
 



More information about the pulseaudio-commits mailing list