From 40ae8dd1db6df5efd908e7a40e33cca0ea42d9cf Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Sat, 20 Apr 2002 14:45:21 +0000 Subject: BusyException; naming fixes --- cpp/src/IceUtil/Cond.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpp/src/IceUtil/Cond.cpp') diff --git a/cpp/src/IceUtil/Cond.cpp b/cpp/src/IceUtil/Cond.cpp index 476e936295e..c08559d8d28 100644 --- a/cpp/src/IceUtil/Cond.cpp +++ b/cpp/src/IceUtil/Cond.cpp @@ -122,7 +122,7 @@ IceUtil::Cond::preWait() const } void -IceUtil::Cond::postWait(bool timedout) const +IceUtil::Cond::postWait(bool timedOut) const { _internal.lock(); _unblocked++; @@ -132,7 +132,7 @@ IceUtil::Cond::postWait(bool timedout) const bool last = --_toUnblock == 0; _internal.unlock(); - if (timedout) + if (timedOut) { _queue.wait(); } -- cgit v1.2.3