1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

Fix then/than typos.

This commit is contained in:
Ondřej Bílka
2013-08-30 18:09:30 +02:00
parent 382466e04e
commit f24a6d086b
18 changed files with 63 additions and 39 deletions

View File

@@ -116,9 +116,9 @@ fmtmsg (long int classification, const char *label, int severity,
if (cp == NULL)
return MM_NOTOK;
/* The first field must not contain more then 10 bytes. */
/* The first field must not contain more than 10 bytes. */
if (cp - label > 10
/* The second field must not have more then 14 bytes. */
/* The second field must not have more than 14 bytes. */
|| strlen (cp + 1) > 14)
return MM_NOTOK;
}