Make debug builds build again.

This commit is contained in:
Joris Vink 2016-02-13 14:20:31 +01:00
parent c91fa9ab70
commit fcc2010117
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ extern int daemon(int, int);
#if defined(KORE_DEBUG) #if defined(KORE_DEBUG)
#define kore_debug(...) \ #define kore_debug(...) \
if (kore_debug) \ if (kore_debug) \
kore_debug_internal(__FILE__, __LINE__, ##__VA_ARGS__) kore_debug_internal(__FILE__, __LINE__, __VA_ARGS__)
#else #else
#define kore_debug(...) #define kore_debug(...)
#endif #endif