This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-460-g1477b38


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  1477b3830740b272e36187e85a7207a09833012b (commit)
      from  78ad175b3060aae058ed5d05ced2bc58714901cd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=1477b3830740b272e36187e85a7207a09833012b

commit 1477b3830740b272e36187e85a7207a09833012b
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Jun 11 11:48:01 2015 +0200

    pthread_key_create: Fix typo in comment

diff --git a/ChangeLog b/ChangeLog
index 80afbb1..3089ce2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]
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;

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    5 +++++
 nptl/pthread_key_create.c |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]