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

Fix all the remaining misspellings -- BZ 25337

This commit is contained in:
Paul Pluzhnikov
2023-05-20 13:37:47 +00:00
parent 5013f6fc6c
commit 7f0d9e61f4
206 changed files with 313 additions and 313 deletions

View File

@ -45,7 +45,7 @@ SIMPLE_MEMCMP (const wchar_t *s1, const wchar_t *s2, size_t n)
int ret = 0;
/* Warning!
wmemcmp has to use SIGNED comparison for elements.
memcmp has to use UNSIGNED comparison for elemnts.
memcmp has to use UNSIGNED comparison for elements.
*/
while (n-- && (ret = *s1 < *s2 ? -1 : *s1 == *s2 ? 0 : 1) == 0) {s1++; s2++;}
return ret;