summaryrefslogtreecommitdiff
path: root/ACE/ace/Thread_Manager.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-14 09:15:59 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-14 09:15:59 +0100
commita43a79e4dd01f75d80fa2262741c641212c5ceaa (patch)
tree128d302ce86cc80584745a1fcdc7190fde49898e /ACE/ace/Thread_Manager.cpp
parent903a835971c0ba8a72179e73bc3b07a33b6e3ee2 (diff)
downloadATCD-a43a79e4dd01f75d80fa2262741c641212c5ceaa.tar.gz
Simplify boolean expressions
* ACE/ace/Event_Handler.cpp: * ACE/ace/Recursive_Thread_Mutex.cpp: * ACE/ace/Thread_Manager.cpp:
Diffstat (limited to 'ACE/ace/Thread_Manager.cpp')
-rw-r--r--ACE/ace/Thread_Manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Thread_Manager.cpp b/ACE/ace/Thread_Manager.cpp
index e5434960e02..4b7042c1216 100644
--- a/ACE/ace/Thread_Manager.cpp
+++ b/ACE/ace/Thread_Manager.cpp
@@ -1717,7 +1717,7 @@ ACE_Thread_Manager::wait (const ACE_Time_Value *timeout,
ACE_Auto_Ptr<ACE_Time_Value> local_timeout;
// Check to see if we're using absolute time or not.
- if (use_absolute_time == false && timeout != 0)
+ if (!use_absolute_time && timeout != 0)
{
// create time value duplicate (preserves time policy)
local_timeout.reset (timeout->duplicate ());