From b1ca3061a1de1df4813ea3a9fe7a082b17d76d74 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 31 May 2001 20:17:20 +0000 Subject: [PATCH] avoid precision problems with 0.0 constant --- src/ca/acctst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/acctst.c b/src/ca/acctst.c index 81ec205c9..636d5da0d 100644 --- a/src/ca/acctst.c +++ b/src/ca/acctst.c @@ -1494,7 +1494,7 @@ void performMonitorUpdateTest ( chid chan ) /* * set channel to known value */ - temp = 0.0; + temp = 1.0; SEVCHK ( ca_put ( DBR_FLOAT, chan, &temp ), NULL ); for ( i = 0; i < NELEMENTS(test); i++ ) {