From 04eaa0424614a9090125f80a514ac677cd59912d Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 31 Oct 2005 22:22:10 +0000 Subject: [PATCH] dont pass time stamp to send timeout notify --- src/ca/tcpSendWatchdog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/tcpSendWatchdog.cpp b/src/ca/tcpSendWatchdog.cpp index 5fb98897a..30e4a197b 100644 --- a/src/ca/tcpSendWatchdog.cpp +++ b/src/ca/tcpSendWatchdog.cpp @@ -41,7 +41,7 @@ tcpSendWatchdog::~tcpSendWatchdog () } epicsTimerNotify::expireStatus tcpSendWatchdog::expire ( - const epicsTime & currentTime ) + const epicsTime & /* currentTime */ ) { callbackManager mgr ( this->ctxNotify, this->cbMutex ); epicsGuard < epicsMutex > guard ( this->mutex ); @@ -57,7 +57,7 @@ epicsTimerNotify::expireStatus tcpSendWatchdog::expire ( debugPrintf ( ( "Request not accepted by CA server %s for %g sec. Disconnecting.\n", hostName, this->period ) ); # endif - this->iiu.sendTimeoutNotify ( currentTime, mgr, guard ); + this->iiu.sendTimeoutNotify ( mgr, guard ); return noRestart; }