summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/ThreadException.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-07-12 13:26:55 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-07-12 13:26:55 +0000
commit4ae15d37b8cd9d3afcf2826df96e36f7a519c17c (patch)
treeaa1950fa6017954dd75d75352f9ed9976378b9ce /cppe/src/IceE/ThreadException.cpp
parentFixed linux build (diff)
downloadice-4ae15d37b8cd9d3afcf2826df96e36f7a519c17c.tar.bz2
ice-4ae15d37b8cd9d3afcf2826df96e36f7a519c17c.tar.xz
ice-4ae15d37b8cd9d3afcf2826df96e36f7a519c17c.zip
removed PropertyNames.
Diffstat (limited to 'cppe/src/IceE/ThreadException.cpp')
-rw-r--r--cppe/src/IceE/ThreadException.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/cppe/src/IceE/ThreadException.cpp b/cppe/src/IceE/ThreadException.cpp
index 0193b9415ba..b538904fb33 100644
--- a/cppe/src/IceE/ThreadException.cpp
+++ b/cppe/src/IceE/ThreadException.cpp
@@ -33,7 +33,9 @@ IceUtil::ThreadSyscallException::toString() const
if(_error != 0)
{
out += ":\nthread syscall exception: ";
-#ifdef _WIN32
+#ifdef _WIN32_WCE
+ out += Ice::printfToString("thread error: %d", _error);
+#elif defined(_WIN32)
LPVOID lpMsgBuf = 0;
DWORD ok = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |