From b4a3060bcc774818005a7dc6cdc45a71c9d4d9b9 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Tue, 8 May 2001 20:02:31 +0000 Subject: [PATCH] Added missing calls to recGblGetGraphicDouble and recGblGetControlDouble. --- src/rec/calcRecord.c | 2 ++ src/rec/calcoutRecord.c | 2 ++ src/rec/gsubRecord.c | 2 ++ src/rec/subRecord.c | 2 ++ 4 files changed, 8 insertions(+) diff --git a/src/rec/calcRecord.c b/src/rec/calcRecord.c index 26ffacf9e..8bb920cd6 100644 --- a/src/rec/calcRecord.c +++ b/src/rec/calcRecord.c @@ -254,6 +254,7 @@ static long get_graphic_double(paddr,pgd) pgd->lower_disp_limit = pcalc->lopr; return(0); } + recGblGetGraphicDouble(paddr,pgd); return(0); } @@ -283,6 +284,7 @@ static long get_control_double(paddr,pcd) pcd->lower_ctrl_limit = pcalc->lopr; return(0); } + recGblGetControlDouble(paddr,pcd); return(0); } static long get_alarm_double(paddr,pad) diff --git a/src/rec/calcoutRecord.c b/src/rec/calcoutRecord.c index 2afea941b..15115b4a7 100644 --- a/src/rec/calcoutRecord.c +++ b/src/rec/calcoutRecord.c @@ -463,6 +463,7 @@ static long get_graphic_double(paddr,pgd) pgd->lower_disp_limit = pcalc->lopr; return(0); } + recGblGetGraphicDouble(paddr,pgd); return(0); } @@ -492,6 +493,7 @@ static long get_control_double(paddr,pcd) pcd->lower_ctrl_limit = pcalc->lopr; return(0); } + recGblGetControlDouble(paddr,pcd); return(0); } static long get_alarm_double(paddr,pad) diff --git a/src/rec/gsubRecord.c b/src/rec/gsubRecord.c index f5b4486c3..f54eef619 100644 --- a/src/rec/gsubRecord.c +++ b/src/rec/gsubRecord.c @@ -230,6 +230,7 @@ static long get_graphic_double(paddr,pgd) pgd->lower_disp_limit = psub->lopr; return(0); } + recGblGetGraphicDouble(paddr,pgd); return(0); } @@ -259,6 +260,7 @@ static long get_control_double(paddr,pcd) pcd->lower_ctrl_limit = psub->lopr; return(0); } + recGblGetControlDouble(paddr,pcd); return(0); } diff --git a/src/rec/subRecord.c b/src/rec/subRecord.c index 4b9c8c274..847c4c0bc 100644 --- a/src/rec/subRecord.c +++ b/src/rec/subRecord.c @@ -254,6 +254,7 @@ static long get_graphic_double(paddr,pgd) pgd->lower_disp_limit = psub->lopr; return(0); } + recGblGetGraphicDouble(paddr,pgd); return(0); } @@ -283,6 +284,7 @@ static long get_control_double(paddr,pcd) pcd->lower_ctrl_limit = psub->lopr; return(0); } + recGblGetControlDouble(paddr,pcd); return(0); }