]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix typo in comment in bug 26137 fix.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 1 Jul 2020 14:53:30 +0000 (14:53 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 1 Jul 2020 14:53:30 +0000 (14:53 +0000)
stdlib/strtod_l.c

index 158da787a2efb9ff6fe312d69820f8dbe26fef9f..64fc63e47f3e1de28819234cbe818241b83cea18 100644 (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;