From f6b8e0eae4374f339487a33e3e4fe5462d5816e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 25 Nov 2017 10:16:00 +0100 Subject: New upstream version 2.0.0 --- spectro/hcfr.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 spectro/hcfr.c (limited to 'spectro/hcfr.c') diff --git a/spectro/hcfr.c b/spectro/hcfr.c old mode 100644 new mode 100755 index 22b5170..568c69f --- a/spectro/hcfr.c +++ b/spectro/hcfr.c @@ -53,6 +53,7 @@ #include "sa_config.h" #include "numsup.h" #endif /* SALONEINSTLIB */ +#include "cgats.h" #include "xspect.h" #include "insttypes.h" #include "conv.h" @@ -125,7 +126,7 @@ hcfr_flush( int rv; for (rv = ICOM_OK;;) { - rv = c->read(c, buf, MAX_MES_SIZE, NULL, '\000', 100000, 0.05); + rv = c->read(c, buf, MAX_MES_SIZE, NULL, NULL, 100000, 0.05); if (rv != ICOM_OK) break; /* Expect timeout with nothing to read */ } @@ -933,7 +934,7 @@ hcfr_get_set_opt(inst *pp, inst_opt_type m, ...) { } /* Constructor */ -extern hcfr *new_hcfr(icoms *icom, instType itype) { +extern hcfr *new_hcfr(icoms *icom, instType dtype) { hcfr *p; if ((p = (hcfr *)calloc(sizeof(hcfr),1)) == NULL) { a1loge(icom->log, 1, "new_hcfr: malloc failed!\n"); @@ -957,7 +958,7 @@ extern hcfr *new_hcfr(icoms *icom, instType itype) { p->del = hcfr_del; p->icom = icom; - p->itype = itype; + p->dtype = dtype; icmSetUnity3x3(p->ccmat); /* Set the colorimeter correction matrix to do nothing */ p->dtech = disptech_unknown; -- cgit v1.2.3