diff options
Diffstat (limited to 'cpp/src/IcePatch2/OS.cpp')
-rw-r--r-- | cpp/src/IcePatch2/OS.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch2/OS.cpp b/cpp/src/IcePatch2/OS.cpp index 1f27c970055..505a5e7185b 100644 --- a/cpp/src/IcePatch2/OS.cpp +++ b/cpp/src/IcePatch2/OS.cpp @@ -15,7 +15,7 @@ using namespace OS; #ifdef _WIN32 int -OS::stat(const string& path, structstat* buf) +OS::osstat(const string& path, structstat* buf) { return ::_wstat(IceUtil::stringToWstring(path).c_str(), buf); } @@ -71,7 +71,7 @@ OS::getcwd(string& cwd) #else int -OS::stat(const string& path, structstat* buf) +OS::osstat(const string& path, structstat* buf) { return ::stat(path.c_str(), buf); } |