From fce144efaa007e1d998751b05791d490af2da006 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 22 Dec 2008 06:37:53 +0000 Subject: [PATCH] fix another instance of _STATIC_ASSERT svn path=/trunk/; revision=38267 --- reactos/include/crt/malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/crt/malloc.h b/reactos/include/crt/malloc.h index 9ea62af81db..e876d61b1ce 100644 --- a/reactos/include/crt/malloc.h +++ b/reactos/include/crt/malloc.h @@ -25,7 +25,7 @@ extern "C" { #endif #ifndef _STATIC_ASSERT -#define _STATIC_ASSERT(expr) typedef char __static_assert_t[(expr)?1:-1] +#define _STATIC_ASSERT(expr) typedef char __static_assert_t[(expr)] #endif /* Return codes for _heapwalk() */