Replaced '__GNUG__' with '(TOOL_FAMILY == gnu)' in debug message macro.

This commit is contained in:
Ron Sluiter
2011-08-25 16:14:24 +00:00
parent bcb36c8daa
commit 0ec77b79e6
+1 -1
View File
@@ -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