From dd2e21b806ee783565e13bf760a903c80a6069c0 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 23 Jul 2005 08:25:27 +0000 Subject: [PATCH] gcc 3.2.x fix --- lib/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/log.h b/lib/log.h index b15ccd1..47526f3 100644 --- a/lib/log.h +++ b/lib/log.h @@ -48,7 +48,7 @@ extern void msg(const char* logFormat, ...); extern void msg_str(const char* log); extern void exitLog(void); -#define FIXNULL(a) ((int)(a)?(a):"NULL") +#define FIXNULL(a) ((a)?(a):"NULL") #ifdef __cplusplus } -- 1.7.10.4