diff --git a/common/JackLibAPI.cpp b/common/JackLibAPI.cpp index d9e7a817..5a7b9219 100644 --- a/common/JackLibAPI.cpp +++ b/common/JackLibAPI.cpp @@ -68,7 +68,7 @@ jack_client_t* jack_client_new_aux(const char* client_name, jack_options_t optio jack_log("jack_client_new %s", client_name); - if (status == NULL) /* no status from caller? */ + if (status == NULL) /* no status from caller? */ status = &my_status; /* use local status word */ *status = (jack_status_t)0; diff --git a/common/JackServerAPI.cpp b/common/JackServerAPI.cpp index 34b7283d..b7d65c84 100644 --- a/common/JackServerAPI.cpp +++ b/common/JackServerAPI.cpp @@ -64,7 +64,7 @@ jack_client_t* jack_client_new_aux(const char* client_name, jack_options_t optio jack_log("jack_client_new %s", client_name); - if (status == NULL) /* no status from caller? */ + if (status == NULL) /* no status from caller? */ status = &my_status; /* use local status word */ *status = (jack_status_t)0; diff --git a/posix/JackSocket.cpp b/posix/JackSocket.cpp index ec891acb..8b0ab8fb 100644 --- a/posix/JackSocket.cpp +++ b/posix/JackSocket.cpp @@ -260,7 +260,7 @@ int JackServerSocket::Bind(const char* dir, const char* name, int which) // A re goto error; } - if (listen(fSocket, 1) < 0) { + if (listen(fSocket, 100) < 0) { jack_error("Cannot enable listen on server socket err = %s", strerror(errno)); goto error; }