1
0
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:
Florian Weimer
2015-06-11 11:48:01 +02:00
parent 78ad175b30
commit 1477b38307
2 changed files with 6 additions and 1 deletions

View File

@ -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;