From 378de4c6745edcf83cd997ed6dff27b63e675aec Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 6 Sep 2011 16:20:09 +0200 Subject: [PATCH] src/log.c: Fix build without DEBUG. Broken in 64bfebde76d568808b6fa8a8d09b4b5afe13dc15. --- src/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.44.1