diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-09-05 00:12:09 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-09-05 00:12:09 +0000 |
commit | 8373aa3e64022082be661ce15940df6ff955c2fe (patch) | |
tree | 425350ab2abc4fb41d5f151f006691d7500f76f8 /cppe/src | |
parent | fixes for bug 431, creating an object adapter with a duplicate id will (diff) | |
download | ice-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-x | cppe/src/IceE/SafeStdio.cpp | 2 |
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); |