Define USE_TYPED_DRVET, use drvet * instead of struct drvet *

This commit is contained in:
Andrew Johnson
2023-12-24 18:01:37 +00:00
parent 2f730b8e9f
commit 918a188285
9 changed files with 13 additions and 10 deletions

View File

@@ -388,7 +388,7 @@ static void initDrvSup(void) /* Locate all driver support entry tables */
for (pdrvSup = (drvSup *)ellFirst(&pdbbase->drvList); pdrvSup;
pdrvSup = (drvSup *)ellNext(&pdrvSup->node)) {
struct drvet *pdrvet = registryDriverSupportFind(pdrvSup->name);
drvet *pdrvet = registryDriverSupportFind(pdrvSup->name);
if (!pdrvet) {
errlogPrintf("iocInit: driver %s not found\n", pdrvSup->name);