From 15ebe8e5ad0730b9ac95e6210798aa9008f001d3 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Wed, 28 Sep 2005 15:22:26 +0000 Subject: Fixes from Loic Le Loarer --- common/usuals.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/usuals.h b/common/usuals.h index 48d372f..99951d7 100644 --- a/common/usuals.h +++ b/common/usuals.h @@ -66,9 +66,9 @@ #ifdef _DEBUG #include "assert.h" - #define ASSERT assert + #define ASSERT(x) assert(x) #else - #define ASSERT + #define ASSERT(x) #endif #define KL(s) ((sizeof(s) - 1) / sizeof(char)) -- cgit v1.2.3