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: 483034 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id B3D0014029E for ; Thu, 11 Jun 2015 20:05:02 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=sourceware.org header.i=@sourceware.org header.b=fJq47KH2; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type; q=dns; s=default; b=eFeNhlB7oxzPhswbqC742ofPNs3WV pSLHakoH3we6nuR2eEfvlDAMMquVlPAHJBpZoZz61A5qk1IQhqR/bED34xyH3y0w 1oMozQuckry0ZBmGUUiYZ3jnb7ZU3EJmDYO/YKfzQ6y+r/p3rCnKwY4MFqqP2MFv TO05LdP05zJ0rE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :content-type; s=default; bh=AwsQPLpgcvxSh8EQ1Uqvgtsa8rM=; b=fJq 47KH2cW//S6dt0iSSCjw4uWdt5cHnitsLlqEQHlth9ZAmQ6TXk35pjGfDBJagVbN vMPa0NxsHdKtCMJSnUJyMFhX6QFteVDn1M993xLbtvzyojPqpP7EjbLVTeEMx0Pv pQtKF5vn9jtHqK3AjSbhDW9TgFIQXhqEehp0I3Vg= 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