diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-23 12:17:05 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-23 12:17:05 +0200 |
commit | c0b89ac5bfb90835ef01573267020e42d4fe070c (patch) | |
tree | 733c16852d964d84b7565af4bdaff0bcca901b88 /spectro/kleink10.c | |
parent | 094535c010320967639e8e86f974d878e80baa72 (diff) |
Imported Upstream version 1.8.0upstream/1.8.0
Diffstat (limited to 'spectro/kleink10.c')
-rwxr-xr-x[-rw-r--r--] | spectro/kleink10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spectro/kleink10.c b/spectro/kleink10.c index d632bdb..461cb28 100644..100755 --- a/spectro/kleink10.c +++ b/spectro/kleink10.c @@ -2252,7 +2252,7 @@ char id[CALIDLEN] /* Condition identifier (ie. white reference ID) */ /* Do the appropriate calibration */ if (*calt & inst_calt_emis_offset) { - if (*calc != inst_calc_man_em_dark) { + if ((*calc & inst_calc_cond_mask) != inst_calc_man_em_dark) { *calc = inst_calc_man_em_dark; return inst_cal_setup; } @@ -2797,7 +2797,7 @@ extern kleink10 *new_kleink10(icoms *icom, instType itype) { p->del = k10_del; p->icom = icom; - p->itype = icom->itype; + p->itype = itype; p->dtech = disptech_unknown; amutex_init(p->lock); |