summaryrefslogtreecommitdiff
path: root/Python/dtoa.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-01-13 22:15:53 +0000
committerMark Dickinson <dickinsm@gmail.com>2010-01-13 22:15:53 +0000
commit02139d74bae1a77bbe4ad528762e1620486e3e36 (patch)
tree5ea55e9ccf3209147703c1b2cedeeec30480e6a7 /Python/dtoa.c
parent6e0d3d67fb67cc80c4570e504890e03c2bc6efde (diff)
downloadcpython-git-02139d74bae1a77bbe4ad528762e1620486e3e36.tar.gz
Fix buggy comparison: LHS of comparison was being treated as unsigned.
Diffstat (limited to 'Python/dtoa.c')
-rw-r--r--Python/dtoa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c
index 81221a5b35..c8985bc980 100644
--- a/Python/dtoa.c
+++ b/Python/dtoa.c
@@ -1141,7 +1141,7 @@ sulp(U *x, BCinfo *bc)
{
U u;
- if (bc->scale && 2*P + 1 - ((word0(x) & Exp_mask) >> Exp_shift) > 0) {
+ if (bc->scale && 2*P + 1 > (int)((word0(x) & Exp_mask) >> Exp_shift)) {
/* rv/2^bc->scale is subnormal */
word0(&u) = (P+2)*Exp_msk1;
word1(&u) = 0;