summaryrefslogtreecommitdiff
path: root/ace/Handle_Set.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-03-20 04:53:36 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-03-20 04:53:36 +0000
commit217604f2f905ea83cf78804afb9a6995d01a9aba (patch)
treec682c75a4b1e647ef4495b8d2ff2765ff43e7142 /ace/Handle_Set.cpp
parent5713b1319823b60f4d49e876645979cc5ada452f (diff)
downloadATCD-217604f2f905ea83cf78804afb9a6995d01a9aba.tar.gz
ot
Diffstat (limited to 'ace/Handle_Set.cpp')
-rw-r--r--ace/Handle_Set.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Handle_Set.cpp b/ace/Handle_Set.cpp
index 3eeb6032da5..12037575cfd 100644
--- a/ace/Handle_Set.cpp
+++ b/ace/Handle_Set.cpp
@@ -208,12 +208,12 @@ ACE_Handle_Set_Iterator::ACE_Handle_Set_Iterator (const ACE_Handle_Set &f)
// end of the bitset.
for (;
this->handles_.mask_.fds_bits[this->index_] == 0
- && this->num_ < ACE_Handle_Set::MAXSIZE
+ && this->num_ < ACE_Handle_Set::MAXSIZE;
this->index_++)
this->num_ += ACE_Handle_Set::WORDSIZE;
if (this->num_ >= ACE_Handle_Set::MAXSIZE)
- this->num_ = this->handles_.max_handle + 1;
+ this->num_ = this->handles_.max_handle_ + 1;
else
for (this->val_ = this->handles_.mask_.fds_bits[this->index_];
(ACE_BIT_DISABLED (this->val_, 1)) && this->num_ < ACE_Handle_Set::MAXSIZE;