fixed gnu warnings

This commit is contained in:
Jeff Hill
2004-01-15 03:13:08 +00:00
parent 67fbf44633
commit 8bd3d4a8a0
2 changed files with 2 additions and 2 deletions

View File

@@ -166,7 +166,7 @@ void tcpSendThread::run ()
}
catch ( ... ) {
errlogPrintf (
"cac: tcp send thread received an unexpected exception ",
"cac: tcp send thread received an unexpected exception "
"- disconnecting\n");
// this should cause the server to disconnect from
// the client

View File

@@ -273,7 +273,7 @@ void udpiiu::shutdown ()
udpRecvThread::udpRecvThread (
udpiiu & iiuIn, cacContextNotify & ctxNotifyIn, epicsMutex & cbMutexIn,
const char * pName, unsigned stackSize, unsigned priority ) :
iiu ( iiuIn ), ctxNotify ( ctxNotifyIn ), cbMutex ( cbMutexIn ),
iiu ( iiuIn ), cbMutex ( cbMutexIn ), ctxNotify ( ctxNotifyIn ),
thread ( *this, pName, stackSize, priority ) {}
udpRecvThread::~udpRecvThread ()