summaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
committerLennart Poettering <lennart@poettering.net>2010-02-03 14:25:37 +0100
commita65d570117dc73a3af5084319b645ab1556562e5 (patch)
treecd53759875da62de10383e86cf6bfa3f0496bddd /log.h
parent47be870bd83fb3719dffc3ee9348a409ab762a14 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.h b/log.h
index cd78a0a50..232798afc 100644
--- a/log.h
+++ b/log.h
@@ -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__)