fixed sun pro warning

This commit is contained in:
Jeff Hill
2001-03-07 17:56:26 +00:00
parent 4e570ce710
commit b58f4df8df

View File

@@ -73,11 +73,11 @@ void dbSubscriptionIO::operator delete ( void *pCadaver, size_t size )
dbSubscriptionIO::freeList.release ( pCadaver, size );
}
extern "C" void dbSubscriptionEventCallback ( void *pPrivate, struct dbAddr *paddr,
int eventsRemaining, struct db_field_log *pfl )
extern "C" void dbSubscriptionEventCallback ( void *pPrivate, struct dbAddr * /* paddr */,
int /* eventsRemaining */, struct db_field_log *pfl )
{
dbSubscriptionIO *pIO = static_cast <dbSubscriptionIO *> ( pPrivate );
pIO->chan.subscriptionUpdate ( pIO->type, pIO->count, pfl, *pIO);
dbSubscriptionIO *pIO = static_cast < dbSubscriptionIO * > ( pPrivate );
pIO->chan.subscriptionUpdate ( pIO->type, pIO->count, pfl, *pIO );
}
int dbSubscriptionIO::begin ( unsigned mask )