fixed gnu warnings

This commit is contained in:
Jeff Hill
2001-05-23 00:48:41 +00:00
parent 069e25aa72
commit 245bd5ab5e
7 changed files with 30 additions and 26 deletions

View File

@@ -117,14 +117,15 @@ void oldChannelNotify::readException ( int status, const char *pContext,
unsigned type, arrayElementCount count, void *pValue )
{
ca_signal_formated ( status, 0, 0u, "ctx=%s type=%s count=%u ptr=%p",
pContext, dbr_type_to_text ( type ), count, pValue );
pContext, dbr_type_to_text ( static_cast < int > ( type ) ),
count, pValue );
}
void oldChannelNotify::writeException ( int status, const char *pContext,
unsigned type, arrayElementCount count )
{
ca_signal_formated ( status, 0, 0u, "ctx=%s type=%s count=%u",
pContext, dbr_type_to_text ( type ), count );
pContext, dbr_type_to_text ( static_cast < int > ( type ) ), count );
}
bool oldChannelNotify::includeFirstConnectInCountOfOutstandingIO () const