From ba1b00477d66191f1dad2811c238ec2709319511 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sun, 20 Aug 2006 00:09:08 +0000 Subject: [PATCH] Changed the #ifdef name --- test_problems/cathermo/HMW_test_1/HMW_test_1.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp b/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp index abbefe84f..8087171f0 100644 --- a/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp +++ b/test_problems/cathermo/HMW_test_1/HMW_test_1.cpp @@ -17,7 +17,7 @@ using namespace Cantera; -int CHECK_DEBUG_HKM = 0; +int CHECK_DEBUG_MODE = 0; void printUsage() { cout << "usage: HMW_test_1 " << endl; @@ -55,11 +55,11 @@ int main(int argc, char **argv) try { -#ifdef DEBUG_HKM - CHECK_DEBUG_HKM = 1; +#ifdef DEBUG_MODE + CHECK_DEBUG_MODE = 1; #endif - if (CHECK_DEBUG_HKM != 1) { - printf("Check can only be done if DEBUG_HKM is defined\n"); + if (CHECK_DEBUG_MODE != 1) { + printf("Check can only be done if DEBUG_MODE is defined\n"); exit(-1); } HMWSoln *HMW = new HMWSoln(1);