summaryrefslogtreecommitdiff
path: root/ace/Handle_Set.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Handle_Set.cpp')
-rw-r--r--ace/Handle_Set.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/ace/Handle_Set.cpp b/ace/Handle_Set.cpp
index 9c5d25a45b5..c21378380cb 100644
--- a/ace/Handle_Set.cpp
+++ b/ace/Handle_Set.cpp
@@ -102,12 +102,14 @@ ACE_Handle_Set::sync (ACE_HANDLE max)
#if !defined(ACE_WIN32)
this->size_ = 0;
- for (int i = (max - 1) / ACE_Handle_Set::WORDSIZE; i >= 0; i--)
- this->size_ += count_bits (this->mask_.fds_bits[i]);
+ for (int i = (max - 1) / ACE_Handle_Set::WORDSIZE;
+ i >= 0;
+ i--)
+ this->size_ += count_bits (this->mask_.fds_bits[i]);
this->set_max (max);
#else
- ACE_UNUSED_ARG(max);
+ ACE_UNUSED_ARG (max);
#endif /* !ACE_WIN32 */
}