summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/ThreadException.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-10-28 06:25:27 +0000
committerMichi Henning <michi@zeroc.com>2002-10-28 06:25:27 +0000
commit382f7ebc87fc0d1056e257b83963d1903f7e8d27 (patch)
tree4c390abfa4a5d507ae044106619b5533232d2b14 /cpp/src/IceUtil/ThreadException.cpp
parentchanging Mutable Realms to ZeroC (diff)
downloadice-382f7ebc87fc0d1056e257b83963d1903f7e8d27.tar.bz2
ice-382f7ebc87fc0d1056e257b83963d1903f7e8d27.tar.xz
ice-382f7ebc87fc0d1056e257b83963d1903f7e8d27.zip
First shot at porting to VC++ 2002. Code compiles, but suffers random
crashes during the tests.
Diffstat (limited to 'cpp/src/IceUtil/ThreadException.cpp')
-rw-r--r--cpp/src/IceUtil/ThreadException.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/ThreadException.cpp b/cpp/src/IceUtil/ThreadException.cpp
index d4cee046c2b..7f7a0074acf 100644
--- a/cpp/src/IceUtil/ThreadException.cpp
+++ b/cpp/src/IceUtil/ThreadException.cpp
@@ -50,7 +50,7 @@ IceUtil::ThreadSyscallException::ice_print(ostream& os) const
if(ok)
{
LPCTSTR msg = (LPCTSTR)lpMsgBuf;
- assert(msg && strlen(msg) > 0);
+ assert(msg && strlen((char*)msg) > 0);
os << msg;
LocalFree(lpMsgBuf);
}