aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Output')
-rw-r--r--src/plugins/Output/jack/bio2jack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Output/jack/bio2jack.c b/src/plugins/Output/jack/bio2jack.c
index 868998ee9..ddc45478a 100644
--- a/src/plugins/Output/jack/bio2jack.c
+++ b/src/plugins/Output/jack/bio2jack.c
@@ -980,11 +980,11 @@ JACK_OpenDevice(jack_driver_t * drv)
/* try to become a client of the JACK server */
TRACE("client name '%s'\n", our_client_name);
- if((drv->client = jack_client_new(our_client_name)) == 0)
+ if((drv->client = jack_client_open(our_client_name, JackNullOption | JackNoStartServer, NULL)) == 0)
{
/* try once more */
TRACE("trying once more to jack_client_new");
- if((drv->client = jack_client_new(our_client_name)) == 0)
+ if((drv->client = jack_client_open(our_client_name, JackNullOption | JackNoStartServer, NULL)) == 0)
{
ERR("jack server not running?\n");
free(our_client_name);