From 21fdb795bd4ef53f58b77e9a5a65fc1f549eb9a8 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 17 Jun 1993 17:25:36 +0000 Subject: [PATCH] fixed invalid arg passed to sysFindByName() resulting from 5.1 upgrade --- src/drv/drvEpvxi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drv/drvEpvxi.c b/src/drv/drvEpvxi.c index 9c28a56ce..ce76ff5e3 100644 --- a/src/drv/drvEpvxi.c +++ b/src/drv/drvEpvxi.c @@ -443,7 +443,7 @@ epvxiResman(void) status = symFindByName( sysSymTbl, "_EPICS_VXI_LA_COUNT", - pEPICS_VXI_LA_COUNT, + &pEPICS_VXI_LA_COUNT, &type); if(status == OK){ EPICS_VXI_LA_COUNT = *pEPICS_VXI_LA_COUNT; @@ -1351,7 +1351,7 @@ VXIE *pvxie ) { int i; - int status = -1; + int status = ERROR; short model; UINT8 type;