From 44c8b2b307b7282b34b355361d7cf45904001044 Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Fri, 30 Nov 1990 10:49:02 +0000 Subject: [PATCH] fix --- src/rec/recWaveform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rec/recWaveform.c b/src/rec/recWaveform.c index a002affab..2de00583b 100644 --- a/src/rec/recWaveform.c +++ b/src/rec/recWaveform.c @@ -134,7 +134,7 @@ static long init_record(pwf) pwf->bptr = (char *)malloc(pwf->nelm * sizeofTypes[pwf->ftvl]); pwf->nord = 0; /* must have read_wf function defined */ - if( (pdset->number < 6) || (pdset->read_wf == NULL) ) { + if( (pdset->number < 5) || (pdset->read_wf == NULL) ) { recGblRecordError(S_dev_missingSup,pwf,"wf: init_record"); return(S_dev_missingSup); }