fixed cast

This commit is contained in:
Jeff Hill
2004-09-30 19:14:23 +00:00
parent 2e66cfb8fb
commit 23be13bd5b

View File

@@ -257,7 +257,7 @@ const char *epicsThread::getNameSelf ()
bool epicsThread::isOkToBlock ()
{
return static_cast<int>(epicsThreadIsOkToBlock());
return static_cast<bool>(epicsThreadIsOkToBlock());
}
void epicsThread::setOkToBlock(bool isOkToBlock)