Browse Source

Cleanup

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1672 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.68
sletz 17 years ago
parent
commit
24669f2ebf
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      common/JackLibAPI.cpp
  2. +1
    -1
      common/JackServerAPI.cpp

+ 1
- 1
common/JackLibAPI.cpp View File

@@ -102,7 +102,7 @@ EXPORT jack_client_t* jack_client_open(const char* client_name, jack_options_t o
if (jack_debug && strcmp(jack_debug, "on") == 0)
client = new JackDebugClient(new JackLibClient(GetSynchroTable())); // Debug mode
else
client = new JackLibClient(GetSynchroTable()); // Debug mode
client = new JackLibClient(GetSynchroTable());
#else
client = new JackLibClient(GetSynchroTable());
#endif


+ 1
- 1
common/JackServerAPI.cpp View File

@@ -102,7 +102,7 @@ EXPORT jack_client_t* jack_client_open(const char* client_name, jack_options_t o
if (jack_debug && strcmp(jack_debug, "on") == 0)
client = new JackDebugClient(new JackInternalClient(JackServer::fInstance, GetSynchroTable())); // Debug mode
else
client = new JackInternalClient(JackServer::fInstance, GetSynchroTable()); // Debug mode
client = new JackInternalClient(JackServer::fInstance, GetSynchroTable());
#else
client = new JackInternalClient(JackServer::fInstance, GetSynchroTable());
#endif


Loading…
Cancel
Save