fix for mantis 297

This commit is contained in:
Jeff Hill
2007-08-23 17:46:28 +00:00
parent a8d4a7a879
commit de1b8a94ff
15 changed files with 56 additions and 50 deletions

View File

@@ -602,12 +602,13 @@ void cac::disconnectAllIO (
}
}
int cac::printf ( epicsGuard < epicsMutex > & callbackControl,
const char *pformat, ... ) const
int cac :: printFormated (
epicsGuard < epicsMutex > & callbackControl,
const char * pformat, ... ) const
{
va_list theArgs;
va_start ( theArgs, pformat );
int status = this->vPrintf ( callbackControl, pformat, theArgs );
int status = this->varArgsPrintFormated ( callbackControl, pformat, theArgs );
va_end ( theArgs );
return status;
}