diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-10-16 03:17:09 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-01-09 14:58:12 -0500 |
commit | bae7baca80ea532372c7924fe5734808282c5b2e (patch) | |
tree | 5862965d7cd6684173f7e3068d110d6b2f3eed36 /src/libudev/log.h | |
parent | bc681b6fb2639772af71acc9fc4614a1b5932a7e (diff) |
macro: clean up usage of gcc attributes
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/log.h')
-rw-r--r-- | src/libudev/log.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libudev/log.h b/src/libudev/log.h index 2ecba45abb..23ada2255c 100644 --- a/src/libudev/log.h +++ b/src/libudev/log.h @@ -58,7 +58,7 @@ int log_meta( const char*file, int line, const char *func, - const char *format, ...) _printf_attr_(5,6); + const char *format, ...) _printf_(5,6); int log_metav( int level, @@ -66,7 +66,7 @@ int log_metav( int line, const char *func, const char *format, - va_list ap) _printf_attr_(5,0); + va_list ap) _printf_(5,0); int log_oom_internal( const char *file, |