fixed gnu warning

This commit is contained in:
Jeff Hill
2009-07-31 15:52:32 +00:00
parent 191668023b
commit 7246366222
2 changed files with 2 additions and 2 deletions

View File

@@ -401,7 +401,7 @@ exAsyncCreateIO ::
const casCtx &ctxIn, bool scanOnIn, double asyncDelayIn ) :
casAsyncPVAttachIO ( ctxIn ), pvi ( pviIn ),
timer ( casIn.createTimer () ),
cas ( casIn ), scanOn ( scanOnIn ), asyncDelay ( asyncDelayIn )
cas ( casIn ), asyncDelay ( asyncDelayIn ), scanOn ( scanOnIn )
{
this->timer.start ( *this, 0.00001 );
}

View File

@@ -581,8 +581,8 @@ inline unsigned exServer :: maxSimultAsyncIO () const
inline exAsyncPV::exAsyncPV ( exServer & cas, pvInfo & setup,
bool preCreateFlag, bool scanOnIn,
double asyncDelayIn ) :
asyncDelay ( asyncDelayIn ),
exScalarPV ( cas, setup, preCreateFlag, scanOnIn ),
asyncDelay ( asyncDelayIn ),
simultAsychIOCount ( 0u )
{
}