summaryrefslogtreecommitdiff
path: root/ace/Process_Manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Process_Manager.cpp')
-rw-r--r--ace/Process_Manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Process_Manager.cpp b/ace/Process_Manager.cpp
index 5e991e12b2f..0f4a3c4a36f 100644
--- a/ace/Process_Manager.cpp
+++ b/ace/Process_Manager.cpp
@@ -705,7 +705,7 @@ ACE_Process_Manager::wait (const ACE_Time_Value &timeout)
// else Process terminated...wait for more...
}
- return ACE_static_cast (int, this->current_count_);
+ return static_cast<int> (this->current_count_);
}
// Collect a single child process' exit status. Store the exit code
@@ -775,7 +775,7 @@ ACE_Process_Manager::wait (pid_t pid,
handles[i] =
process_table_[i].process_->gethandle ();
- DWORD handle_count = ACE_static_cast (DWORD, this->current_count_);
+ DWORD handle_count = static_cast<DWORD> (this->current_count_);
DWORD result = ::WaitForMultipleObjects (handle_count,
handles,
FALSE,