summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/Util.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-12-19 05:40:33 +0000
committerMichi Henning <michi@zeroc.com>2005-12-19 05:40:33 +0000
commit3b56f40ec9a58bf1218e60e39383f14511684394 (patch)
tree8f60d2d14b66716cd7d7bf04e67a64476814bd42 /cpp/src/IcePatch2/Util.cpp
parentfixing MIDP compilation errors (diff)
downloadice-3b56f40ec9a58bf1218e60e39383f14511684394.tar.bz2
ice-3b56f40ec9a58bf1218e60e39383f14511684394.tar.xz
ice-3b56f40ec9a58bf1218e60e39383f14511684394.zip
Fixed minor compile error for VC++ 6.0.
Diffstat (limited to 'cpp/src/IcePatch2/Util.cpp')
-rw-r--r--cpp/src/IcePatch2/Util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/Util.cpp b/cpp/src/IcePatch2/Util.cpp
index fa90c6fed94..dd4d6b0a7ef 100644
--- a/cpp/src/IcePatch2/Util.cpp
+++ b/cpp/src/IcePatch2/Util.cpp
@@ -509,7 +509,7 @@ IcePatch2::readDirectory(const string& pa)
const wstring fs = IceUtil::stringToWstring(simplify(path + "/*"));
#if defined(_MSC_VER) && (_MSC_VER < 1300)
- long h = _wfindfirst(fs.c_str()), &data);
+ long h = _wfindfirst(fs.c_str(), &data);
#else
intptr_t h = _wfindfirst(fs.c_str(), &data);
#endif