From: ceriel Date: Mon, 22 Apr 1991 11:29:48 +0000 (+0000) Subject: Fixed bug X-Git-Tag: release-5-5~1129 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ab8022ccbdff66cf6e25306904efb38cb335b1cf;p=ack.git Fixed bug --- diff --git a/lang/cem/libcc.ansi/stdlib/ext_comp.c b/lang/cem/libcc.ansi/stdlib/ext_comp.c index e4117c3db..656ae895d 100644 --- a/lang/cem/libcc.ansi/stdlib/ext_comp.c +++ b/lang/cem/libcc.ansi/stdlib/ext_comp.c @@ -660,8 +660,8 @@ _ext_str_cvt(struct EXTEND *e, int ndigit, int *decpt, int *sign, int ecvtflag) else *p++ = '0'; /* Check that remainder is still significant */ if (cmp_ext(&m, e) > 0 || cmp_ext(e, &oneminm) > 0) { + if (e->m1 && e->exp >= -1) *(p-1) += 1; e->m1 = 0; - if (e->exp >= -1) *(p-1) += 1; continue; } ten_mult(&m);