From: Florian Weimer Date: Sat, 31 Dec 2016 19:27:36 +0000 (+0100) Subject: tunables: Use correct unused attribute X-Git-Tag: glibc-2.25~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c589b1a8a4401e258ba23a03fcbcc79b82393ab;p=thirdparty%2Fglibc.git tunables: Use correct unused attribute --- diff --git a/ChangeLog b/ChangeLog index efcbe06a5a1..01ee23b2bc0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-12-31 Florian Weimer + + * elf/dl-tunables.h (__tunables_init): Fix unused attribute. + 2016-12-31 Siddhesh Poyarekar * manual/tunables.texi: New chapter. diff --git a/elf/dl-tunables.h b/elf/dl-tunables.h index 033781856ac..c11facc14af 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. */ }