kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit fcc2010117769cc622f3a38fc3d6cec811edaef2
parent c91fa9ab701f97e3901dec90657c510e50691e99
Author: Joris Vink <joris@coders.se>
Date:   Sat, 13 Feb 2016 14:20:31 +0100

Make debug builds build again.

Diffstat:
includes/kore.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/kore.h b/includes/kore.h @@ -76,7 +76,7 @@ extern int daemon(int, int); #if defined(KORE_DEBUG) #define kore_debug(...) \ if (kore_debug) \ - kore_debug_internal(__FILE__, __LINE__, ##__VA_ARGS__) + kore_debug_internal(__FILE__, __LINE__, __VA_ARGS__) #else #define kore_debug(...) #endif