[git commit nptl] attribute_optimize: fix typo with args

Bernhard Reutner-Fischer rep.dot.nop at gmail.com
Mon Apr 12 13:09:25 UTC 2010


commit: http://git.uclibc.org/uClibc/commit/?id=e90c33f951efc032ca23f48326343a83c0b54b10
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/nptl

curious how 308f5c6e5fd56ea3d1a5512e34388aad788f1180 ever worked.. :P

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop at gmail.com>
---
 include/libc-symbols.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/libc-symbols.h b/include/libc-symbols.h
index 2729d30..4615a6a 100644
--- a/include/libc-symbols.h
+++ b/include/libc-symbols.h
@@ -86,9 +86,9 @@
 #endif
 
 #if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
-# define attribute_optimize(lvl) __attribute__ ((optimize(x)))
+# define attribute_optimize(x) __attribute__ ((optimize(x)))
 #else
-# define attribute_optimize(lvl)
+# define attribute_optimize(x)
 #endif
 
 #define attribute_unused __attribute__ ((unused))
-- 
1.6.3.3



More information about the uClibc-cvs mailing list