diff options
Diffstat (limited to 'strings')
-rw-r--r-- | strings/dtoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/dtoa.c b/strings/dtoa.c index eccd05bcf92..7b560227026 100644 --- a/strings/dtoa.c +++ b/strings/dtoa.c @@ -1290,7 +1290,7 @@ static double ratio(Bigint *a, Bigint *b) dval(&db)= b2d(b, &kb); k= ka - kb + 32*(a->wds - b->wds); if (k > 0) - word0(&da)+= k*Exp_msk1 * 1.0; + word0(&da)+= (ULong)(k*Exp_msk1 * 1.0); else { k= -k; |