summaryrefslogtreecommitdiff
path: root/ace/IOStream.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-01 17:08:35 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-01 17:08:35 +0000
commit62b257d7b49d0a935037ab215870f0ba5b70e032 (patch)
tree4912d0c66fd1d9188e7952417f890b59db9c05f8 /ace/IOStream.cpp
parent46d5e9ec391050a0b3fc7062c055f75491e94ec4 (diff)
downloadATCD-62b257d7b49d0a935037ab215870f0ba5b70e032.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/IOStream.cpp')
-rw-r--r--ace/IOStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/IOStream.cpp b/ace/IOStream.cpp
index 13c2e0c9520..f9d96970129 100644
--- a/ace/IOStream.cpp
+++ b/ace/IOStream.cpp
@@ -284,7 +284,7 @@ ACE_Streambuf::overflow (int c)
// buffer, so we're guaranteed to have room in the buffer for
// this new information. So... we add it to the buffer and
// adjust our 'next' pointer acordingly.
- *pptr () = c;
+ *pptr () = (char) c;
pbump (1);
}