diff options
-rw-r--r-- | stdlib/strtod_l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c index 158da787a2..64fc63e47f 100644 --- a/stdlib/strtod_l.c +++ b/stdlib/strtod_l.c @@ -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; |