summary refs log tree commit diff
path: root/stdlib
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-08-30 18:09:30 +0200
committerOndřej Bílka <neleai@seznam.cz>2013-08-30 18:10:31 +0200
commitf24a6d086b96a65a73c68ecf349b03321cb03720 (patch)
tree823c4db1322b11c81ba5ce05d77adbf4afbdbbc8 /stdlib
parent382466e04e347d3b3fa221897efb8f4cdc239105 (diff)
downloadglibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.gz
glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.tar.xz
glibc-f24a6d086b96a65a73c68ecf349b03321cb03720.zip
Fix then/than typos.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/fmtmsg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/fmtmsg.c b/stdlib/fmtmsg.c
index 05344f0ada..5185de4272 100644
--- a/stdlib/fmtmsg.c
+++ b/stdlib/fmtmsg.c
@@ -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;
     }