From 8bd3d4a8a0391bedb2def40afa3ec2986ec93b53 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 15 Jan 2004 03:13:08 +0000 Subject: [PATCH] fixed gnu warnings --- src/ca/tcpiiu.cpp | 2 +- src/ca/udpiiu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/tcpiiu.cpp b/src/ca/tcpiiu.cpp index b78dbb617..d59927931 100644 --- a/src/ca/tcpiiu.cpp +++ b/src/ca/tcpiiu.cpp @@ -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 diff --git a/src/ca/udpiiu.cpp b/src/ca/udpiiu.cpp index fa2fcd60b..abf8a43b9 100644 --- a/src/ca/udpiiu.cpp +++ b/src/ca/udpiiu.cpp @@ -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 ()