From 7a7e03269c1ec58a85a03e8fb0e871f3265b97d3 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Fri, 5 Nov 1993 09:14:40 +0000 Subject: [PATCH] modified get_precision to return 2 for HIGH field --- src/rec/recBo.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rec/recBo.c b/src/rec/recBo.c index 03daed899..aa87af7bb 100644 --- a/src/rec/recBo.c +++ b/src/rec/recBo.c @@ -329,9 +329,7 @@ static long get_precision(paddr,precision) { struct boRecord *pbo=(struct boRecord *)paddr->precord; - *precision = pbo->prec; - if(paddr->pfield == (void *)&pbo->val) return(0); - recGblGetPrec(paddr,precision); + if(paddr->pfield == (void *)&pbo->high) return(2); return(0); }