diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-03 14:25:37 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-02-03 14:25:37 +0100 |
commit | a65d570117dc73a3af5084319b645ab1556562e5 (patch) | |
tree | cd53759875da62de10383e86cf6bfa3f0496bddd /log.h | |
parent | 47be870bd83fb3719dffc3ee9348a409ab762a14 (diff) |
macro: drop double __ prefix to make sure we don't collide with gcc/glibc definitions
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ void log_meta( const char*file, int line, const char *func, - const char *format, ...) __printf_attr(5,6); + const char *format, ...) _printf_attr(5,6); #define log_debug(...) log_meta(LOG_DEBUG, __FILE__, __LINE__, __func__, __VA_ARGS__) #define log_info(...) log_meta(LOG_INFO, __FILE__, __LINE__, __func__, __VA_ARGS__) |