diff options
author | Florian Weimer <fweimer@redhat.com> | 2015-06-11 11:48:01 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2015-06-11 11:48:22 +0200 |
commit | 1477b3830740b272e36187e85a7207a09833012b (patch) | |
tree | 7e6557e120e89e588a842f229658c041a96187e1 | |
parent | 78ad175b3060aae058ed5d05ced2bc58714901cd (diff) | |
download | glibc-1477b3830740b272e36187e85a7207a09833012b.tar.gz glibc-1477b3830740b272e36187e85a7207a09833012b.tar.xz glibc-1477b3830740b272e36187e85a7207a09833012b.zip |
pthread_key_create: Fix typo in comment
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | nptl/pthread_key_create.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 80afbb18e3..3089ce236b 100644 --- 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] 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; |