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, 1 insertions, 3 deletions
diff --git a/ace/Process_Manager.cpp b/ace/Process_Manager.cpp
index 6be9d9b4c4c..d1d3f0ada79 100644
--- a/ace/Process_Manager.cpp
+++ b/ace/Process_Manager.cpp
@@ -55,9 +55,7 @@ ACE_Process_Manager::resize (size_t size)
ACE_Process_Descriptor *temp;
- ACE_NEW_RETURN (temp,
- ACE_Process_Descriptor[size],
- -1);
+ ACE_NEW_RETURN (temp, ACE_Process_Descriptor[size], -1);
for (size_t i = 0; i < this->max_table_size_; i++)
temp[i] = this->proc_table_[i]; // Structure assignment.