fixed missing type in static init

This commit is contained in:
Jeff Hill
2000-07-13 23:37:24 +00:00
parent 67da742a41
commit 5f8f321cba

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.8 1997/08/05 00:46:56 jhill
* fixed warnings
*
* Revision 1.7 1997/06/25 05:09:00 jhill
* removed templInst.cc
*
@@ -85,11 +88,11 @@ epicsShareFunc caServer::caServer(unsigned pvCountEstimateIn) :
logEventMask(this->registerEvent("log")),
alarmEventMask(this->registerEvent("alarm"))
{
static init;
static bool init = false;
if (!init) {
gddMakeMapDBR(gddApplicationTypeTable::app_table);
init = TRUE;
init = true;
}
if (!this->pCAS) {