GNU C Library master sources branch master updated. glibc-2.24-584-g3c589b1

fw@sourceware.org fw@sourceware.org
Sat Dec 31 19:50:00 GMT 2016


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  3c589b1a8a4401e258ba23a03fcbcc79b82393ab (commit)
      from  7715d3ab5095ac8b256cc1c26e16aebf96f10597 (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=3c589b1a8a4401e258ba23a03fcbcc79b82393ab

commit 3c589b1a8a4401e258ba23a03fcbcc79b82393ab
Author: Florian Weimer <fweimer@redhat.com>
Date:   Sat Dec 31 20:27:36 2016 +0100

    tunables: Use correct unused attribute

diff --git a/ChangeLog b/ChangeLog
index efcbe06..01ee23b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2016-12-31  Florian Weimer  <fweimer@redhat.com>
+
+	* elf/dl-tunables.h (__tunables_init): Fix unused attribute.
+
 2016-12-31  Siddhesh Poyarekar  <siddhesh@sourceware.org>
 
 	* manual/tunables.texi: New chapter.
diff --git a/elf/dl-tunables.h b/elf/dl-tunables.h
index 0337818..c11facc 100644
--- a/elf/dl-tunables.h
+++ b/elf/dl-tunables.h
@@ -24,7 +24,7 @@
 #if !HAVE_TUNABLES
 static inline void
 __always_inline
-__tunables_init (char **unused __attribute_unused)
+__tunables_init (char **unused __attribute__ ((unused)))
 {
   /* This is optimized out if tunables are not enabled.  */
 }

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

Summary of changes:
 ChangeLog         |    4 ++++
 elf/dl-tunables.h |    2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)


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



More information about the Glibc-cvs mailing list