diff --git a/src/dev/devAiSoftRaw.c b/src/dev/devAiSoftRaw.c index 6d221666d..5faae9fbc 100644 --- a/src/dev/devAiSoftRaw.c +++ b/src/dev/devAiSoftRaw.c @@ -83,7 +83,6 @@ static long init_record(pai) switch (pai->inp.type) { case (CONSTANT) : recGblInitConstantLink(&pai->inp,DBF_LONG,&pai->rval); - pai->udf = FALSE; break; case (PV_LINK) : case (DB_LINK) : diff --git a/src/dev/devBiSoftRaw.c b/src/dev/devBiSoftRaw.c index a2ea951ef..d0b7b8343 100644 --- a/src/dev/devBiSoftRaw.c +++ b/src/dev/devBiSoftRaw.c @@ -80,7 +80,6 @@ static long init_record(pbi) switch (pbi->inp.type) { case (CONSTANT) : recGblInitConstantLink(&pbi->inp,DBF_ULONG,&pbi->rval); - pbi->udf = FALSE; break; case (DB_LINK) : case (PV_LINK) : diff --git a/src/dev/devMbbiDirectSoftRaw.c b/src/dev/devMbbiDirectSoftRaw.c index a43637fb8..fd8b8ceae 100644 --- a/src/dev/devMbbiDirectSoftRaw.c +++ b/src/dev/devMbbiDirectSoftRaw.c @@ -76,7 +76,6 @@ static long init_record(pmbbi) switch (pmbbi->inp.type) { case (CONSTANT) : recGblInitConstantLink(&pmbbi->inp,DBF_ULONG,&pmbbi->rval); - pmbbi->udf = FALSE; break; case (DB_LINK) : case (PV_LINK) : diff --git a/src/dev/devMbbiSoftRaw.c b/src/dev/devMbbiSoftRaw.c index fd74b035e..42c1d692f 100644 --- a/src/dev/devMbbiSoftRaw.c +++ b/src/dev/devMbbiSoftRaw.c @@ -78,7 +78,6 @@ static long init_record(pmbbi) if (pmbbi->inp.type == CONSTANT) { recGblInitConstantLink(&pmbbi->inp,DBF_ULONG,&pmbbi->rval); - pmbbi->udf = FALSE; } return(0); }