From 4c551c5587905e445f5221d59d1bf110f84cf9a6 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 19 Dec 2002 21:26:06 +0000 Subject: [PATCH] fixed sunpro warning --- src/cas/generic/caServerIIL.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cas/generic/caServerIIL.h b/src/cas/generic/caServerIIL.h index 5be95d880..444428af2 100644 --- a/src/cas/generic/caServerIIL.h +++ b/src/cas/generic/caServerIIL.h @@ -184,12 +184,12 @@ inline void caServerI::casMonEventDestroy ( casMonEvent & monEvent ) inline casMonitor & caServerI::casMonitorFactory ( casChannelI & chan, caResId clientId, const unsigned long count, const unsigned type, - const casEventMask & mask, epicsMutex & mutex, + const casEventMask & mask, epicsMutex & mutexIn, casMonitorCallbackInterface & cb ) { casMonitor * pMon = new ( this->casMonitorFreeList ) casMonitor - ( clientId, chan, count, type, mask, mutex, cb ); + ( clientId, chan, count, type, mask, mutexIn, cb ); this->installItem ( *pMon ); return *pMon; }