From 58baed0f2e9ba0debd0f2bc5ab8644648e5dc661 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Thu, 11 Nov 2010 00:19:59 +0000 Subject: [PATCH] Fixed issue 17 There was an obvious error in the THREAD_SAFE_CANTERA compile. --- Cantera/src/thermo/VPSSMgrFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/src/thermo/VPSSMgrFactory.cpp b/Cantera/src/thermo/VPSSMgrFactory.cpp index f8f1f17b2..5b78568a7 100644 --- a/Cantera/src/thermo/VPSSMgrFactory.cpp +++ b/Cantera/src/thermo/VPSSMgrFactory.cpp @@ -200,7 +200,7 @@ namespace Cantera { void VPSSMgrFactory::deleteFactory() { #if defined(THREAD_SAFE_CANTERA) - boost::mutex::scoped_lock lock(species_thermo_mutex); + boost::mutex::scoped_lock lock(vpss_species_thermo_mutex); #endif if (s_factory) { delete s_factory;