summaryrefslogtreecommitdiff
path: root/ACE/ace/Recursive_Thread_Mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Recursive_Thread_Mutex.cpp')
-rw-r--r--ACE/ace/Recursive_Thread_Mutex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Recursive_Thread_Mutex.cpp b/ACE/ace/Recursive_Thread_Mutex.cpp
index 9642f40f505..047a334a24b 100644
--- a/ACE/ace/Recursive_Thread_Mutex.cpp
+++ b/ACE/ace/Recursive_Thread_Mutex.cpp
@@ -47,7 +47,7 @@ ACE_Recursive_Thread_Mutex::remove ()
{
// ACE_TRACE ("ACE_Recursive_Thread_Mutex::remove");
int result = 0;
- if (this->removed_ == false)
+ if (!this->removed_)
{
this->removed_ = true;
result = ACE_OS::recursive_mutex_destroy (&this->lock_);