modifying the condition from (status!=0) to (status>0) to skip the block in case the status variable ==-1
This commit is contained in:
committed by
mdavidsaver
parent
6ca716a77f
commit
4c20518864
@@ -62,7 +62,7 @@ void recGblRecordError(long status, void *pdbc,
|
||||
dbCommon *precord = pdbc;
|
||||
char errMsg[256] = "";
|
||||
|
||||
if (status)
|
||||
if ( status>0 )
|
||||
errSymLookup(status, errMsg, sizeof(errMsg));
|
||||
|
||||
errlogPrintf("recGblRecordError: %s %s PV: %s\n",
|
||||
|
||||
Reference in New Issue
Block a user