From 7246366222aa524197c6e2a676ce00c141971eff Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 31 Jul 2009 15:52:32 +0000 Subject: [PATCH] fixed gnu warning --- src/makeBaseApp/top/caServerApp/exServer.cc | 2 +- src/makeBaseApp/top/caServerApp/exServer.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/makeBaseApp/top/caServerApp/exServer.cc b/src/makeBaseApp/top/caServerApp/exServer.cc index 51ba61237..fff925569 100644 --- a/src/makeBaseApp/top/caServerApp/exServer.cc +++ b/src/makeBaseApp/top/caServerApp/exServer.cc @@ -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 ); } diff --git a/src/makeBaseApp/top/caServerApp/exServer.h b/src/makeBaseApp/top/caServerApp/exServer.h index a8fb29adc..bc28f6e7c 100644 --- a/src/makeBaseApp/top/caServerApp/exServer.h +++ b/src/makeBaseApp/top/caServerApp/exServer.h @@ -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 ) { }