summaryrefslogtreecommitdiff
path: root/common/JackLibAPI.cpp
diff options
context:
space:
mode:
authorStéphane LETZ <letz@magellan.local>2010-05-07 10:09:42 +0200
committerStéphane LETZ <letz@magellan.local>2010-05-07 10:09:42 +0200
commit9bf10e24ab8eb94d20b31f7c9509c06e98d5b27d (patch)
tree035baa186d1be136f0583297f905ac7f1bd1f126 /common/JackLibAPI.cpp
parent4bd4f5b1bb4819dea97f6d9fe5b18bc057cc27a9 (diff)
downloadjack2-9bf10e24ab8eb94d20b31f7c9509c06e98d5b27d.tar.gz
Correct InternalClientLoad.
Diffstat (limited to 'common/JackLibAPI.cpp')
-rw-r--r--common/JackLibAPI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/JackLibAPI.cpp b/common/JackLibAPI.cpp
index 4af8b218..f22b5e07 100644
--- a/common/JackLibAPI.cpp
+++ b/common/JackLibAPI.cpp
@@ -96,7 +96,7 @@ jack_client_t* jack_client_new_aux(const char* client_name, jack_options_t optio
client = new JackLibClient(GetSynchroTable());
}
- int res = client->Open(va.server_name, client_name, options, status, va.session_id);
+ int res = client->Open(va.server_name, client_name, va.session_id, options, status);
if (res < 0) {
delete client;
JackLibGlobals::Destroy(); // jack library destruction
@@ -149,7 +149,7 @@ jack_client_t* jack_client_open_aux(const char* client_name, jack_options_t opti
client = new JackLibClient(GetSynchroTable());
}
- int res = client->Open(va.server_name, client_name, options, status, va.session_id);
+ int res = client->Open(va.server_name, client_name, va.session_id, options, status);
if (res < 0) {
delete client;
JackLibGlobals::Destroy(); // jack library destruction