mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
pthread_key_create: Fix typo in comment
This commit is contained in:
parent
78ad175b30
commit
1477b38307
@ -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]
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user