diff --git a/src/ca/syncGroupWriteNotify.cpp b/src/ca/syncGroupWriteNotify.cpp index c9a3d1e44..09a2b758e 100644 --- a/src/ca/syncGroupWriteNotify.cpp +++ b/src/ca/syncGroupWriteNotify.cpp @@ -52,7 +52,7 @@ void syncGroupWriteNotify::destroy ( casgRecycle & recycle ) syncGroupWriteNotify::~syncGroupWriteNotify () { if ( this->idIsValid ) { - this->chan->ioCancel ( this-> id ); + this->chan->ioCancel ( this->id ); } } diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index 70b0f538d..0e56ea086 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -175,8 +175,11 @@ unsigned tcpiiu::sendBytes ( const void *pBuf, continue; } - if ( localError != SOCK_EPIPE && localError != SOCK_ECONNRESET && - localError != SOCK_ETIMEDOUT && localError != SOCK_ECONNABORTED ) { + if ( + localError != SOCK_EPIPE && + localError != SOCK_ECONNRESET && + localError != SOCK_ETIMEDOUT && + localError != SOCK_ECONNABORTED ) { this->cacRef.printf ( "CAC: unexpected TCP send error: %s\n", SOCKERRSTR ( localError ) ); }