From ca86603cd6a0037b7b9326a85710d1c3667d3d0a Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 3 May 2010 22:54:51 +0000 Subject: [PATCH] libc: malloc: don't enable SLOWDEBUG by default --- lib/libc/ansi/malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/ansi/malloc.c b/lib/libc/ansi/malloc.c index 2c53dcbaa..d6990fef8 100644 --- a/lib/libc/ansi/malloc.c +++ b/lib/libc/ansi/malloc.c @@ -2,7 +2,7 @@ /* replace undef by define */ #define DEBUG /* check assertions */ -#define SLOWDEBUG /* some extra test loops (requires DEBUG) */ +#undef SLOWDEBUG /* some extra test loops (requires DEBUG) */ #ifndef DEBUG #define NDEBUG -- 2.44.0