1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Fix typo in comment in bug 26137 fix.

This commit is contained in:
Joseph Myers
2020-07-01 14:53:30 +00:00
parent 09555b9721
commit c6aac3bf36

View File

@ -1648,7 +1648,7 @@ ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group,
d1 = den[densize - 2];
/* 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)
num[numsize++] = 0;