mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
pthread_key_create: Fix typo in comment
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user