From 82c99b16a75f5dc66544c297dbbdaf39942b95fe Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 28 Mar 2014 15:56:28 +0000 Subject: [PATCH] Be consistent and use #ifdef instead of #if --- util/eprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/eprintf.c b/util/eprintf.c index 9ca6209..91b19b7 100644 --- a/util/eprintf.c +++ b/util/eprintf.c @@ -33,7 +33,7 @@ enprintf(int status, const char *fmt, ...) void venprintf(int status, const char *fmt, va_list ap) { -#if DEBUG +#ifdef DEBUG fprintf(stderr, "%s: ", argv0); #endif