diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-06-12 17:30:13 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-06-12 17:30:13 -0400 |
commit | c648be7bef08894eb7dc99463eff1c03fc228a2d (patch) | |
tree | 6cd3ae427f107823dfeb95d9fa263bb32018f946 /cpp/src/IceUtil | |
parent | Fix ICE-5549: Added write(const char*, bool) to BasicStream (diff) | |
download | ice-c648be7bef08894eb7dc99463eff1c03fc228a2d.tar.bz2 ice-c648be7bef08894eb7dc99463eff1c03fc228a2d.tar.xz ice-c648be7bef08894eb7dc99463eff1c03fc228a2d.zip |
Windows deprecation fixes
Diffstat (limited to 'cpp/src/IceUtil')
-rw-r--r-- | cpp/src/IceUtil/FileUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/FileUtil.cpp b/cpp/src/IceUtil/FileUtil.cpp index 250abf105ea..9413d717fe9 100644 --- a/cpp/src/IceUtil/FileUtil.cpp +++ b/cpp/src/IceUtil/FileUtil.cpp @@ -237,7 +237,7 @@ IceUtilInternal::unlink(const string& path) int IceUtilInternal::close(int fd) { -#ifdef __MINGW32__ +#ifdef _WIN32 return _close(fd); #else return ::close(fd); |