diff options
Diffstat (limited to 'cppe/src/TcpTransport/Transceiver.cpp')
-rw-r--r-- | cppe/src/TcpTransport/Transceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/TcpTransport/Transceiver.cpp b/cppe/src/TcpTransport/Transceiver.cpp index e464764b487..8ae2022c552 100644 --- a/cppe/src/TcpTransport/Transceiver.cpp +++ b/cppe/src/TcpTransport/Transceiver.cpp @@ -164,13 +164,13 @@ IceInternal::Transceiver::writeWithTimeout(Buffer& buf, int timeout) if(wouldBlock()) { doSelect(false, timeout > 0 ? timeout : _writeTimeout); - continue; + continue; } #endif if(connectionLost()) { - ConnectionLostException ex(__FILE__, __LINE__); + ConnectionLostException ex(__FILE__, __LINE__); ex.error = getSocketErrno(); throw ex; } |