From 0ec77b79e6f0aeec48384a99874c718b54156122 Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Thu, 25 Aug 2011 16:14:24 +0000 Subject: [PATCH] Replaced '__GNUG__' with '(TOOL_FAMILY == gnu)' in debug message macro. --- motorApp/MotorSrc/motorRecord.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motorApp/MotorSrc/motorRecord.cc b/motorApp/MotorSrc/motorRecord.cc index 32fb7d26..635c62de 100644 --- a/motorApp/MotorSrc/motorRecord.cc +++ b/motorApp/MotorSrc/motorRecord.cc @@ -175,7 +175,7 @@ HeadURL: $URL$ /*----------------debugging-----------------*/ -#ifdef __GNUG__ +#if (TOOL_FAMILY == gnu) #ifdef DEBUG #define Debug(l, f, args...) {if (l <= motorRecordDebug) printf(f, ## args);} #else