From c9af15294b0f9817b8e0caa9d01cb615bd86015c Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Tue, 6 Sep 2011 20:49:46 +0000 Subject: [PATCH] Prevent Visual C compiler error and increment release # to 6.7. --- motorApp/MotorSrc/motorRecord.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/motorApp/MotorSrc/motorRecord.cc b/motorApp/MotorSrc/motorRecord.cc index 635c62de..8a0157e3 100644 --- a/motorApp/MotorSrc/motorRecord.cc +++ b/motorApp/MotorSrc/motorRecord.cc @@ -151,7 +151,7 @@ HeadURL: $URL$ * */ -#define VERSION 6.6 +#define VERSION 6.7 #include #include @@ -175,7 +175,7 @@ HeadURL: $URL$ /*----------------debugging-----------------*/ -#if (TOOL_FAMILY == gnu) +#if defined(TOOL_FAMILY) && (TOOL_FAMILY == gnu) #ifdef DEBUG #define Debug(l, f, args...) {if (l <= motorRecordDebug) printf(f, ## args);} #else