summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-19 03:33:19 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-19 03:33:19 +0100
commit1008e62699ac072a943a308872b835b5bb62c2f2 (patch)
tree3e27df193e0bb9c6a89b79481cd33540cc1b02f3
parent60a2c74b5925fecadcf95def71d490389f5632c7 (diff)
pulse: pass selected device to server when playing uncached stream
-rw-r--r--src/pulse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulse.c b/src/pulse.c
index da7a2b2..8dd2021 100644
--- a/src/pulse.c
+++ b/src/pulse.c
@@ -1017,7 +1017,7 @@ int driver_play(ca_context *c, uint32_t id, ca_proplist *proplist, ca_finish_cal
ba.minreq = (uint32_t) -1;
ba.fragsize = (uint32_t) -1;
- if (pa_stream_connect_playback(out->stream, NULL, &ba,
+ if (pa_stream_connect_playback(out->stream, c->device, &ba,
#ifdef PA_STREAM_FAIL_ON_SUSPEND
PA_STREAM_FAIL_ON_SUSPEND
#else