summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2005-09-05 00:12:09 +0000
committerMatthew Newhook <matthew@zeroc.com>2005-09-05 00:12:09 +0000
commit8373aa3e64022082be661ce15940df6ff955c2fe (patch)
tree425350ab2abc4fb41d5f151f006691d7500f76f8 /cppe/src
parentfixes for bug 431, creating an object adapter with a duplicate id will (diff)
downloadice-8373aa3e64022082be661ce15940df6ff955c2fe.tar.bz2
ice-8373aa3e64022082be661ce15940df6ff955c2fe.tar.xz
ice-8373aa3e64022082be661ce15940df6ff955c2fe.zip
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=199
Diffstat (limited to 'cppe/src')
-rwxr-xr-xcppe/src/IceE/SafeStdio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/SafeStdio.cpp b/cppe/src/IceE/SafeStdio.cpp
index e9466339c59..374852d47a4 100755
--- a/cppe/src/IceE/SafeStdio.cpp
+++ b/cppe/src/IceE/SafeStdio.cpp
@@ -19,7 +19,7 @@ Ice::printfToString(const char* fmt, ...)
va_list ap;
va_start(ap, fmt);
char buf[1024];
-#if defined(_WIN32) || defined(_WIN32_WCE)
+#if defined(_WIN32)
_vsnprintf(buf, sizeof(buf)-1, fmt, ap);
#else
vsnprintf(buf, sizeof(buf)-1, fmt, ap);