diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-02 21:34:03 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-02 21:34:03 +0200 |
commit | 93a46b0bc51cf2beb8523830ef7fd74aa0869673 (patch) | |
tree | e3554d764a22d8c971f13b635586b691bc63f889 /src/log.h | |
parent | f5644ae461dfed81fc1eb1212a15992be13b80fd (diff) |
macro: avoid name clash with _unused on ppc
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -59,13 +59,13 @@ int log_meta( const char*file, int line, const char *func, - const char *format, ...) _printf_attr(5,6); + const char *format, ...) _printf_attr_(5,6); -_noreturn void log_assert( +_noreturn_ void log_assert( const char*file, int line, const char *func, - const char *format, ...) _printf_attr(4,5); + const char *format, ...) _printf_attr_(4,5); #define log_debug(...) log_meta(LOG_DEBUG, __FILE__, __LINE__, __func__, __VA_ARGS__) #define log_info(...) log_meta(LOG_INFO, __FILE__, __LINE__, __func__, __VA_ARGS__) |