diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-07 10:40:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-07 10:40:46 +0100 |
commit | 2df826d5f51275271cd1738a0d945f3e036cd1c5 (patch) | |
tree | 5471b19e519c5c78b75031990b1744366983db76 /cpp/src/Ice/OutgoingAsync.cpp | |
parent | Fixed ICE-4933: Added size and replySize fields to dispatch and remote invoca... (diff) | |
download | ice-2df826d5f51275271cd1738a0d945f3e036cd1c5.tar.bz2 ice-2df826d5f51275271cd1738a0d945f3e036cd1c5.tar.xz ice-2df826d5f51275271cd1738a0d945f3e036cd1c5.zip |
Win32 x64 build fixes
Diffstat (limited to 'cpp/src/Ice/OutgoingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/OutgoingAsync.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/OutgoingAsync.cpp b/cpp/src/Ice/OutgoingAsync.cpp index 890e33a4cb9..6f68cb9b6f2 100644 --- a/cpp/src/Ice/OutgoingAsync.cpp +++ b/cpp/src/Ice/OutgoingAsync.cpp @@ -619,7 +619,7 @@ IceInternal::OutgoingAsync::__finished(BasicStream& is) assert(!_exception.get() && !(_state & Done)); if(_remoteObserver) { - _remoteObserver->reply(is.b.size() - headerSize - 4); + _remoteObserver->reply(static_cast<Int>(is.b.size() - headerSize - 4)); } _remoteObserver.detach(); |