From d6e6ee304372c2c0a652ab217bb78393f850deac Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 16 Feb 2011 19:04:29 +0000 Subject: [PATCH] cleantmp.c - protect against double definition of NDEBUG --- commands/cleantmp/cleantmp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/cleantmp/cleantmp.c b/commands/cleantmp/cleantmp.c index 3c4d5a9c6..a6018fde6 100644 --- a/commands/cleantmp/cleantmp.c +++ b/commands/cleantmp/cleantmp.c @@ -22,8 +22,10 @@ #endif #ifndef DEBUG +#ifndef NDEBUG #define NDEBUG #endif +#endif #include #define SEC_DAY (24 * 3600L) /* A full day in seconds */