From 7741eefd462854db7d6d707ae39dc830588f5675 Mon Sep 17 00:00:00 2001 From: "rafael@riseup.net" Date: Mon, 19 Jul 2010 20:44:56 +0000 Subject: [PATCH] patch proposed by issue 22 applied --- darkice/trunk/src/JackDspSource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darkice/trunk/src/JackDspSource.cpp b/darkice/trunk/src/JackDspSource.cpp index f2cb5f6..14fcd66 100644 --- a/darkice/trunk/src/JackDspSource.cpp +++ b/darkice/trunk/src/JackDspSource.cpp @@ -206,7 +206,7 @@ JackDspSource :: open ( void ) throw ( Exception ) snprintf(client_name, 255, "darkice-%d", getpid()); } - if ((client = jack_client_new(client_name)) == NULL) { + if ((client = jack_client_open(client_name, (jack_options_t)0, NULL)) == NULL) { throw Exception( __FILE__, __LINE__, "JACK server not running?"); } Reporter::reportEvent( 1, "Registering as JACK client", client_name);