diff options
Diffstat (limited to 'TAO/tao/Condition.inl')
-rw-r--r-- | TAO/tao/Condition.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/Condition.inl b/TAO/tao/Condition.inl index b514ce2ef60..7e41b1cb2d0 100644 --- a/TAO/tao/Condition.inl +++ b/TAO/tao/Condition.inl @@ -21,7 +21,7 @@ TAO_Condition<MUTEX>::wait (MUTEX &mutex, template <class MUTEX> ACE_INLINE int TAO_Condition<MUTEX>::wait (const ACE_Time_Value *abstime) { - return this->wait (this->mutex_, abstime); + return this->wait (*this->mutex_, abstime); } template<class MUTEX> ACE_INLINE int |