Commit a53c6554 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Logger.h: fix missing compiler attribute

parent 74fe99da
......@@ -68,7 +68,7 @@ static inline void logError(const char *name, int error) \
__attribute__((__unused__));
static inline void logWarning(const char *name, const char *format, ...) \
__attribute__((__unused__));
__attribute__((format(printf, 2, 3))) __attribute__((__unused__));
static inline void logTest(const char *name, const char *format, ...) \
__attribute__((format(printf, 2, 3))) __attribute__((__unused__));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment