fix non debug build

This commit is contained in:
Stefani Seibold 2018-04-17 11:36:52 +02:00
parent 495a9d535d
commit 98a3c4a942

View File

@ -40,6 +40,11 @@ void _debug(int level, const char *file, const char *function, int line, const c
#else #else
static inline void _debug(int level, const char *file, const char *function, int line, const char *fmt, ...) static inline void _debug(int level, const char *file, const char *function, int line, const char *fmt, ...)
{ {
(void)level;
(void)file;
(void)function;
(void)line;
(void)fmt;
} }
#endif #endif