From patchwork Thu Jun 11 10:04:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 7108 Received: (qmail 27452 invoked by alias); 11 Jun 2015 10:04:57 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 27441 invoked by uid 89); 11 Jun 2015 10:04:56 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Message-ID: <55795D44.6050403@redhat.com> Date: Thu, 11 Jun 2015 12:04:52 +0200 From: Florian Weimer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: GNU C Library Subject: [PATCH COMMITTED] pthread_key_create: Fix typo in comment As attached. From 1477b3830740b272e36187e85a7207a09833012b Mon Sep 17 00:00:00 2001 Message-Id: <1477b3830740b272e36187e85a7207a09833012b.1434016153.git.fweimer@redhat.com> From: Florian Weimer Date: Thu, 11 Jun 2015 11:48:01 +0200 Subject: [PATCH] pthread_key_create: Fix typo in comment To: libc-alpha@sourceware.org --- ChangeLog | 5 +++++ nptl/pthread_key_create.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 80afbb1..3089ce2 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 1268d43..a642c69 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; -- 2.4.2