From 7903f675ee7c59cd2dd9d39518f74e1ca3aa69a7 Mon Sep 17 00:00:00 2001 From: sletz Date: Fri, 20 Nov 2009 23:50:32 +0000 Subject: [PATCH] Hopefully fix compilation issue introduced in r3823. git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3825 0c269be4-1314-0410-8aa9-9f06e86f4224 --- common/JackGlobals.h | 2 ++ macosx/coreaudio/JackCoreAudioDriver.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 #include #include #include +#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) { -- 2.11.4.GIT