Rename of pxxx -> prec in device supports

This commit is contained in:
Ralph Lange
2009-04-03 15:45:03 +00:00
parent c0052ea44f
commit 4715043141
20 changed files with 116 additions and 116 deletions
+3 -3
View File
@@ -47,7 +47,7 @@ struct {
};
epicsExportAddress(dset,devMbboDirectSoft);
static long init_record(mbboDirectRecord *pmbbo)
static long init_record(mbboDirectRecord *prec)
{
long status = 0;
@@ -57,10 +57,10 @@ static long init_record(mbboDirectRecord *pmbbo)
} /* end init_record() */
static long write_mbbo(mbboDirectRecord *pmbbo)
static long write_mbbo(mbboDirectRecord *prec)
{
long status;
status = dbPutLink(&pmbbo->out,DBR_USHORT,&pmbbo->val,1);
status = dbPutLink(&prec->out,DBR_USHORT,&prec->val,1);
return(0);
}