From: Paul Brossier Date: Tue, 5 Nov 2013 13:10:32 +0000 (+0100) Subject: examples/jackio.c: update jack_client_new ot jack_client_open X-Git-Tag: 0.4.0-beta1~103 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=5bfb0fd9fe14afeb52d571f3bfa9fee0b40b17fc;p=aubio.git examples/jackio.c: update jack_client_new ot jack_client_open --- 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); }