From 5bfb0fd9fe14afeb52d571f3bfa9fee0b40b17fc Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 5 Nov 2013 14:10:32 +0100 Subject: [PATCH] examples/jackio.c: update jack_client_new ot jack_client_open --- examples/jackio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/jackio.c b/examples/jackio.c index f2da628a..bcb7fb9f 100644 --- a/examples/jackio.c +++ b/examples/jackio.c @@ -90,7 +90,9 @@ new_aubio_jack (uint_t ichan, uint_t ochan, char *jack_port_type; char name[64]; /* initial jack client setup */ - if ((jack_setup->client = jack_client_new (client_name)) == 0) { + jack_options_t options = JackNullOption; + jack_status_t *status = NULL; + if ((jack_setup->client = jack_client_open (client_name, options, status)) == 0) { AUBIO_ERR ("jack server not running?\n"); AUBIO_QUIT (AUBIO_FAIL); } -- 2.11.0