From ab8022ccbdff66cf6e25306904efb38cb335b1cf Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 22 Apr 1991 11:29:48 +0000 Subject: [PATCH] Fixed bug --- lang/cem/libcc.ansi/stdlib/ext_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1