diff options
author | Michi Henning <michi@zeroc.com> | 2005-12-19 05:40:33 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-12-19 05:40:33 +0000 |
commit | 3b56f40ec9a58bf1218e60e39383f14511684394 (patch) | |
tree | 8f60d2d14b66716cd7d7bf04e67a64476814bd42 /cpp/src/IcePatch2/Util.cpp | |
parent | fixing MIDP compilation errors (diff) | |
download | ice-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.cpp | 2 |
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 |