diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-20 12:59:26 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-20 12:59:26 +0000 |
commit | d46702d718844e5de1c8fbcce842c7c26e5f26b0 (patch) | |
tree | 145d815d2b8ea5622d5f1492942fe7e0a7c5047e /cpp | |
parent | Updated depends (diff) | |
download | ice-d46702d718844e5de1c8fbcce842c7c26e5f26b0.tar.bz2 ice-d46702d718844e5de1c8fbcce842c7c26e5f26b0.tar.xz ice-d46702d718844e5de1c8fbcce842c7c26e5f26b0.zip |
Fixed bogus assert
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/Glacier2/router/CallbackI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Glacier2/router/CallbackI.cpp b/cpp/test/Glacier2/router/CallbackI.cpp index c74152a4729..05f710daf3e 100644 --- a/cpp/test/Glacier2/router/CallbackI.cpp +++ b/cpp/test/Glacier2/router/CallbackI.cpp @@ -255,7 +255,7 @@ CallbackReceiverI::waitCallback(const Current& current) { { Lock sync(*this); - assert(!_callback); + assert(!_waitCallback); _waitCallback = true; notifyAll(); } |