Author: tkreuzer Date: Mon Dec 22 00:37:53 2008 New Revision: 38267
URL: http://svn.reactos.org/svn/reactos?rev=38267&view=rev Log: fix another instance of _STATIC_ASSERT
Modified: trunk/reactos/include/crt/malloc.h
Modified: trunk/reactos/include/crt/malloc.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/malloc.h?rev=38... ============================================================================== --- trunk/reactos/include/crt/malloc.h [iso-8859-1] (original) +++ trunk/reactos/include/crt/malloc.h [iso-8859-1] Mon Dec 22 00:37:53 2008 @@ -25,7 +25,7 @@ #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() */