dont use bool - early compilers dont support it

This commit is contained in:
Jeff Hill
2001-09-20 22:43:14 +00:00
parent fbabce651f
commit 2d298e60c2

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.8.6.1 2000/07/13 23:37:24 jhill
* fixed missing type in static init
*
* Revision 1.8 1997/08/05 00:46:56 jhill
* fixed warnings
*
@@ -88,11 +91,11 @@ epicsShareFunc caServer::caServer(unsigned pvCountEstimateIn) :
logEventMask(this->registerEvent("log")),
alarmEventMask(this->registerEvent("alarm"))
{
static bool init = false;
static int init = 0;
if (!init) {
gddMakeMapDBR(gddApplicationTypeTable::app_table);
init = true;
init = 1;
}
if (!this->pCAS) {