diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-11-21 16:32:10 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-11-21 16:32:10 +0000 |
commit | deda1e21772f8efcaf91baab3a9e896c471b0f32 (patch) | |
tree | af0c168df9becd8ea00db08afb7fc04bf46dd9cd /cpp/src/IceSSL/SslTransceiver.cpp | |
parent | Fixed dependencies (diff) | |
download | ice-deda1e21772f8efcaf91baab3a9e896c471b0f32.tar.bz2 ice-deda1e21772f8efcaf91baab3a9e896c471b0f32.tar.xz ice-deda1e21772f8efcaf91baab3a9e896c471b0f32.zip |
Windows x64 port
Diffstat (limited to 'cpp/src/IceSSL/SslTransceiver.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslTransceiver.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceSSL/SslTransceiver.cpp b/cpp/src/IceSSL/SslTransceiver.cpp index d7c0b62a173..d01c1cd60c2 100644 --- a/cpp/src/IceSSL/SslTransceiver.cpp +++ b/cpp/src/IceSSL/SslTransceiver.cpp @@ -756,22 +756,22 @@ IceSSL::SslTransceiver::select(int timeout, bool write) { if(write) { - ret = ::select(fd + 1, 0, &rwFdSet, 0, &tv); + ret = ::select(static_cast<int>(fd + 1), 0, &rwFdSet, 0, &tv); } else { - ret = ::select(fd + 1, &rwFdSet, 0, 0, &tv); + ret = ::select(static_cast<int>(fd + 1), &rwFdSet, 0, 0, &tv); } } else { if(write) { - ret = ::select(fd + 1, 0, &rwFdSet, 0, 0); + ret = ::select(static_cast<int>(fd + 1), 0, &rwFdSet, 0, 0); } else { - ret = ::select(fd + 1, &rwFdSet, 0, 0, 0); + ret = ::select(static_cast<int>(fd + 1), &rwFdSet, 0, 0, 0); } } } |