about summary refs log tree commit diff
path: root/nptl/pthread_key_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/pthread_key_create.c')
-rw-r--r--nptl/pthread_key_create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_key_create.c b/nptl/pthread_key_create.c
index 1268d4359f..a642c6929f 100644
--- a/nptl/pthread_key_create.c
+++ b/nptl/pthread_key_create.c
@@ -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;