summaryrefslogtreecommitdiff
path: root/ace/Logging_Strategy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Logging_Strategy.cpp')
-rw-r--r--ace/Logging_Strategy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Logging_Strategy.cpp b/ace/Logging_Strategy.cpp
index 1147c6a9496..43648f76ec5 100644
--- a/ace/Logging_Strategy.cpp
+++ b/ace/Logging_Strategy.cpp
@@ -243,11 +243,11 @@ ACE_Logging_Strategy::init (int argc, ACE_TCHAR *argv[])
// Create a new ofstream to direct output to the file.
if (wipeout_logfile_)
ACE_NEW_RETURN (output_file,
- ofstream (ACE_TEXT_ALWAYS_CHAR(this->filename_)),
+ ofstream (ACE_TEXT_ALWAYS_CHAR (this->filename_)),
-1);
else
ACE_NEW_RETURN (output_file,
- ofstream (ACE_TEXT_ALWAYS_CHAR(this->filename_),
+ ofstream (ACE_TEXT_ALWAYS_CHAR (this->filename_),
ios::app | ios::out),
-1);
#endif /* ACE_LACKS_IOSTREAM_TOTALLY */