From 2c1d3f334d66fc26274a2ff9c1762215f5155a36 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 10 Feb 2000 17:42:19 +0000 Subject: [PATCH] removed use of OK --- src/rec/timerRecord.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rec/timerRecord.c b/src/rec/timerRecord.c index 9b1285180..6e4e88f03 100644 --- a/src/rec/timerRecord.c +++ b/src/rec/timerRecord.c @@ -297,7 +297,7 @@ static long write_timer(struct timerRecord *ptimer) } /* call device support */ - if ((pdset->write)(ptimer) != OK) { + if ((pdset->write)(ptimer) != 0) { recGblSetSevr(ptimer,WRITE_ALARM,INVALID_ALARM); return 0; }