From ad0695b1192308eb0d172f81f7adbbb7a61261af Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Thu, 4 May 2017 09:27:23 +0200 Subject: [PATCH] std/rec: streamline variable names in int64in/int64out --- src/std/rec/int64inRecord.c | 8 ++++---- src/std/rec/int64outRecord.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/std/rec/int64inRecord.c b/src/std/rec/int64inRecord.c index bac4c92f8..85063028d 100644 --- a/src/std/rec/int64inRecord.c +++ b/src/std/rec/int64inRecord.c @@ -94,9 +94,9 @@ static void monitor(int64inRecord *prec); static long readValue(int64inRecord *prec); -static long init_record(dbCommon *pcom, int pass) +static long init_record(dbCommon *pcommon, int pass) { - int64inRecord *prec = (int64inRecord*)pcom; + int64inRecord *prec = (int64inRecord*)pcommon; struct int64indset *pdset; long status; @@ -130,9 +130,9 @@ static long init_record(dbCommon *pcom, int pass) return(0); } -static long process(dbCommon *pcom) +static long process(dbCommon *pcommon) { - int64inRecord *prec = (int64inRecord*)pcom; + int64inRecord *prec = (int64inRecord*)pcommon; struct int64indset *pdset = (struct int64indset *)(prec->dset); long status; unsigned char pact=prec->pact; diff --git a/src/std/rec/int64outRecord.c b/src/std/rec/int64outRecord.c index d63fad7ea..ecbe52ce8 100644 --- a/src/std/rec/int64outRecord.c +++ b/src/std/rec/int64outRecord.c @@ -92,9 +92,9 @@ static long writeValue(int64outRecord *prec); static void convert(int64outRecord *prec, epicsInt64 value); -static long init_record(dbCommon *pcom, int pass) +static long init_record(dbCommon *pcommon, int pass) { - int64outRecord *prec = (int64outRecord*)pcom; + int64outRecord *prec = (int64outRecord*)pcommon; struct int64outdset *pdset; long status=0; @@ -124,9 +124,9 @@ static long init_record(dbCommon *pcom, int pass) return(0); } -static long process(dbCommon *pcom) +static long process(dbCommon *pcommon) { - int64outRecord *prec = (int64outRecord*)pcom; + int64outRecord *prec = (int64outRecord*)pcommon; struct int64outdset *pdset = (struct int64outdset *)(prec->dset); long status=0; epicsInt64 value;