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

@@ -50,7 +50,7 @@ void CASG::destructor (
this->magic = 0;
}
else {
this->printf ( "cac: attempt to destroy invalid sync group ignored\n" );
this->printFormated ( "cac: attempt to destroy invalid sync group ignored\n" );
}
this->~CASG ();
}
@@ -257,14 +257,14 @@ void CASG::recycleSyncGroupReadNotify (
this->freeListReadOP.release ( & io );
}
int CASG::printf ( const char *pformat, ... )
int CASG :: printFormated ( const char *pformat, ... )
{
va_list theArgs;
int status;
va_start ( theArgs, pformat );
status = this->client.vPrintf ( pformat, theArgs );
status = this->client.varArgsPrintFormated ( pformat, theArgs );
va_end ( theArgs );