fixed sunpro warning

This commit is contained in:
Jeff Hill
2002-12-19 21:26:06 +00:00
parent 9c648d7ab3
commit 4c551c5587

View File

@@ -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;
}