mirror of git://sourceware.org/git/glibc.git
Fix typo in comment in bug 26137 fix.
This commit is contained in:
parent
09555b9721
commit
c6aac3bf36
|
@ -1648,7 +1648,7 @@ ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group,
|
||||||
d1 = den[densize - 2];
|
d1 = den[densize - 2];
|
||||||
|
|
||||||
/* The division does not work if the upper limb of the two-limb
|
/* The division does not work if the upper limb of the two-limb
|
||||||
numerator is greater or equal to than the denominator. */
|
numerator is greater than or equal to the denominator. */
|
||||||
if (__mpn_cmp (num, &den[densize - numsize], numsize) >= 0)
|
if (__mpn_cmp (num, &den[densize - numsize], numsize) >= 0)
|
||||||
num[numsize++] = 0;
|
num[numsize++] = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue