summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-08-22 07:18:07 +0000
committerPierre Ossman <ossman@cendio.se>2006-08-22 07:18:07 +0000
commit8a16c731514a7d25e37ea70080e4c3d42fb5e5d4 (patch)
tree9b7ad5191ec1e23ac991d5f18685ba0fad56b4f0
parent25c0640ac2206872f76df70368180c74153581e3 (diff)
Fix call to pa_pstream_send_tagstruct().
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1308 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/pulse/context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulse/context.c b/src/pulse/context.c
index f2af4727..2f9106a5 100644
--- a/src/pulse/context.c
+++ b/src/pulse/context.c
@@ -456,7 +456,7 @@ static void setup_context(pa_context *c, pa_iochannel *io) {
pa_pstream_send_tagstruct_with_creds(c->pstream, t, &ucred);
}
#else
- pa_pstream_send_tagstruct(c->pstream, t, NULL);
+ pa_pstream_send_tagstruct(c->pstream, t);
#endif
pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, setup_complete_callback, c, NULL);