pthread_key_create: Fix typo in comment
authorFlorian Weimer <fweimer@redhat.com>
Thu, 11 Jun 2015 09:48:01 +0000 (11:48 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 11 Jun 2015 09:48:22 +0000 (11:48 +0200)
ChangeLog
nptl/pthread_key_create.c

index 80afbb1..3089ce2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-11  Florian Weimer  <fweimer@redhat.com>
+
+       * nptl/pthread_key_create.c (__pthread_key_create): Fix typo in
+       comment.
+
 2015-06-10  Gleb Fotengauer-Malinovskiy  <glebfm@altlinux.org>
 
        [BZ #18479]
index 1268d43..a642c69 100644 (file)
@@ -26,7 +26,7 @@ __pthread_key_create (key, destr)
      pthread_key_t *key;
      void (*destr) (void *);
 {
-  /* Find a slot in __pthread_kyes which is unused.  */
+  /* Find a slot in __pthread_keys which is unused.  */
   for (size_t cnt = 0; cnt < PTHREAD_KEYS_MAX; ++cnt)
     {
       uintptr_t seq = __pthread_keys[cnt].seq;