diff options
author | drh <> | 2023-07-03 10:00:38 +0000 |
---|---|---|
committer | drh <> | 2023-07-03 10:00:38 +0000 |
commit | 37b188fbca861daa26f649bfaa4c42771ff315d7 (patch) | |
tree | d8a5a87c94650c6479356abfa69702f6b23d3ce2 /src | |
parent | c8885d42fe4799a265c69f4a6bbd4cdb3cf4daea (diff) | |
download | sqlite-37b188fbca861daa26f649bfaa4c42771ff315d7.tar.gz sqlite-37b188fbca861daa26f649bfaa4c42771ff315d7.zip |
Fix one constant in the normalization logic. Improved error output
from atof1.test.
FossilOrigin-Name: d3c48807100a358a70fdd799c8935eba1b765ace2e1ddea4475fd673006cb6da
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index b7d6bd58e..40662f021 100644 --- a/src/util.c +++ b/src/util.c @@ -1027,7 +1027,7 @@ void sqlite3FpDecode(FpDecode *p, double r, int iRound, int mxRound){ mul2(r,rr, 1.0e-01, -5.5511151231257827021e-18, &r, &rr); } }else{ - while( r<1.0e-98 ){ + while( r<1.0e-82 ){ exp -= 100; mul2(r, rr, 1.0e+100, -1.5902891109759918046, &r, &rr); } |