diff mbox

[COMMITTED] tunables: Use correct unused attribute

Message ID 20161231195033.38E3E42A2EAE8@oldenburg.str.redhat.com
State New
Headers show

Commit Message

Florian Weimer Dec. 31, 2016, 7:50 p.m. UTC
2016-12-31  Florian Weimer  <fweimer@redhat.com>

	* elf/dl-tunables.h (__tunables_init): Fix unused attribute.
diff mbox

Patch

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.  */
 }