summaryrefslogtreecommitdiff
path: root/ace/OS.cpp
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-02-20 08:56:19 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-02-20 08:56:19 +0000
commit607c1ff82afcb44c31c98268a7480a544fb384db (patch)
treecbec38ac667cbbd114e57f9b27a4d373b7ae0a9b /ace/OS.cpp
parentc2947f55a1764fb5d6478a4d9f090c2ef54fb0d9 (diff)
downloadATCD-607c1ff82afcb44c31c98268a7480a544fb384db.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/OS.cpp')
-rw-r--r--ace/OS.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS.cpp b/ace/OS.cpp
index f8976423fc9..f1f79018d43 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -5197,7 +5197,7 @@ ACE_OS_WString::ACE_OS_WString (const ACE_USHORT16 *s)
size_t len = ACE_OS::strlen (s);
ACE_NEW (this->rep_, char[len]);
for (size_t i = 0; i < len; i++)
- this->rep_[i] = s[i];
+ this->rep_[i] = ACE_static_cast (char, s[i]);
this->rep_[len] = '\0';
return;