|
From: <sv...@va...> - 2009-01-21 22:53:59
|
Author: njn
Date: 2009-01-21 22:53:53 +0000 (Wed, 21 Jan 2009)
New Revision: 9016
Log:
Remove redundant "0 ||" in conditional.
Modified:
branches/DARWIN/coregrind/m_replacemalloc/vg_replace_malloc.c
Modified: branches/DARWIN/coregrind/m_replacemalloc/vg_replace_malloc.c
===================================================================
--- branches/DARWIN/coregrind/m_replacemalloc/vg_replace_malloc.c 2009-01-21 22:52:39 UTC (rev 9015)
+++ branches/DARWIN/coregrind/m_replacemalloc/vg_replace_malloc.c 2009-01-21 22:53:53 UTC (rev 9016)
@@ -140,7 +140,7 @@
static void init(void) __attribute__((constructor));
#define MALLOC_TRACE(format, args...) \
- if (0 || info.clo_trace_malloc) { \
+ if (info.clo_trace_malloc) { \
VALGRIND_INTERNAL_PRINTF(format, ## args ); }
/* Below are new versions of malloc, __builtin_new, free,
|