diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-22 18:11:52 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-06-22 18:11:52 +0000 |
commit | a84ca451011cc44f507492b87c7f175191996b1a (patch) | |
tree | ee584fe1903868b4cb1d97e616d4fb50d2b12284 /examples | |
parent | 31504d488aa61f9ee1fcbff056095341e3ab4fca (diff) | |
download | ATCD-a84ca451011cc44f507492b87c7f175191996b1a.tar.gz |
ChangeLogTag: Fri Jun 22 13:10:13 2001 Krishnakumar B
<kitty@cs.wustl.edu>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Log_Msg/test_ostream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Log_Msg/test_ostream.cpp b/examples/Log_Msg/test_ostream.cpp index 604366d4622..098e5de05a0 100644 --- a/examples/Log_Msg/test_ostream.cpp +++ b/examples/Log_Msg/test_ostream.cpp @@ -46,7 +46,7 @@ main (int, char *[]) #if !defined (ACE_LACKS_IOSTREAM_TOTALLY) // Create a persistent store. const char *filename = "output"; - ios::openmode flags = ios::out | ios::trunc; + int flags = ios::out | ios::trunc; ofstream myostream (filename, flags); // Check for errors. |