mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Fix typo in comment in bug 26137 fix.
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user