diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-02-22 15:38:52 +0000 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2006-02-22 15:38:52 +0000 |
commit | 153757be2e8e5ab65913e7bbd0e5ebcc60c8e467 (patch) | |
tree | 4cf880306e5d67b46c97a808e39083e3814a50d2 /polyp/polyp.c | |
parent | 6890d16836e85deed9e8ca91d095473347013ccc (diff) |
Fixes for polyp plugin
From: Pierre Ossman <ossman@cendio.se>
There shouldn't be any more API changes until polypaudio 0.8 that affect
this plugin. I am working on supporting capture volume and mute
switches, but that should be a strict addition (i.e. it can wait until
the next release if things get tight).
Diffstat (limited to 'polyp/polyp.c')
-rw-r--r-- | polyp/polyp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polyp/polyp.c b/polyp/polyp.c index 139152f..0b25ae5 100644 --- a/polyp/polyp.c +++ b/polyp/polyp.c @@ -234,7 +234,7 @@ int polyp_connect(snd_polyp_t *p, const char *server) assert(p && p->context && p->mainloop && (p->state == POLYP_STATE_INIT)); - err = pa_context_connect(p->context, server, 1, NULL); + err = pa_context_connect(p->context, server, 0, NULL); if (err < 0) goto error; |