From: Simon Ruderich Date: Tue, 6 Sep 2011 14:20:09 +0000 (+0200) Subject: src/log.c: Fix build without DEBUG. X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=378de4c6745edcf83cd997ed6dff27b63e675aec src/log.c: Fix build without DEBUG. Broken in 64bfebde76d568808b6fa8a8d09b4b5afe13dc15. --- diff --git a/src/log.c b/src/log.c index a703c1c..9cd3da4 100644 --- a/src/log.c +++ b/src/log.c @@ -42,7 +42,7 @@ void log_message(int level, const char *file, int line, const char *format, ...) } va_start(ap, format); -#if DEBUG +#ifdef DEBUG fprintf(stdout, "%-12s:%-3d ", file, line); #else (void)file;