From: Florian Weimer Date: Thu, 11 Jun 2015 09:48:01 +0000 (+0200) Subject: pthread_key_create: Fix typo in comment X-Git-Tag: glibc-2.22~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1477b3830740b272e36187e85a7207a09833012b;p=thirdparty%2Fglibc.git pthread_key_create: Fix typo in comment --- diff --git a/ChangeLog b/ChangeLog index 80afbb18e39..3089ce236bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-06-11 Florian Weimer + + * nptl/pthread_key_create.c (__pthread_key_create): Fix typo in + comment. + 2015-06-10 Gleb Fotengauer-Malinovskiy [BZ #18479] diff --git a/nptl/pthread_key_create.c b/nptl/pthread_key_create.c index 1268d4359f1..a642c6929f1 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;