diff options
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(); |