summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2009-11-20 23:50:32 +0000
committersletz <sletz@0c269be4-1314-0410-8aa9-9f06e86f4224>2009-11-20 23:50:32 +0000
commit7903f675ee7c59cd2dd9d39518f74e1ca3aa69a7 (patch)
tree457221afffa7ef38af66a63b37e1cef357266858
parentbed09539b72a690eb0d790cfdc85a100da812538 (diff)
downloadjack2-7903f675ee7c59cd2dd9d39518f74e1ca3aa69a7.tar.gz
Hopefully fix compilation issue introduced in r3823.
git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3825 0c269be4-1314-0410-8aa9-9f06e86f4224
-rw-r--r--common/JackGlobals.h2
-rw-r--r--macosx/coreaudio/JackCoreAudioDriver.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/common/JackGlobals.h b/common/JackGlobals.h
index 7bd61581..63dc9ab2 100644
--- a/common/JackGlobals.h
+++ b/common/JackGlobals.h
@@ -23,10 +23,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "JackPlatformPlug.h"
#include "JackConstants.h"
+#ifdef __CLIENTDEBUG__
#include <iostream>
#include <fstream>
#include <string>
#include <time.h>
+#endif
namespace Jack
{
diff --git a/macosx/coreaudio/JackCoreAudioDriver.cpp b/macosx/coreaudio/JackCoreAudioDriver.cpp
index e540a164..55f5d4d2 100644
--- a/macosx/coreaudio/JackCoreAudioDriver.cpp
+++ b/macosx/coreaudio/JackCoreAudioDriver.cpp
@@ -1623,7 +1623,7 @@ int JackCoreAudioDriver::Start()
return -1;
}
- // Waiting for Measure callback to be called ( = driver has started)
+ // Waiting for Measure callback to be called (= driver has started)
fState = false;
int count = 0;
while (!fState && count++ < WAIT_COUNTER) {