|
From: <sv...@va...> - 2009-05-19 07:57:07
|
Author: njn
Date: 2009-05-19 08:56:55 +0100 (Tue, 19 May 2009)
New Revision: 9983
Log:
DARWIN sync: wibble.
Modified:
trunk/coregrind/m_replacemalloc/vg_replace_malloc.c
Modified: trunk/coregrind/m_replacemalloc/vg_replace_malloc.c
===================================================================
--- trunk/coregrind/m_replacemalloc/vg_replace_malloc.c 2009-05-19 07:55:19 UTC (rev 9982)
+++ trunk/coregrind/m_replacemalloc/vg_replace_malloc.c 2009-05-19 07:56:55 UTC (rev 9983)
@@ -109,8 +109,8 @@
static void init(void) __attribute__((constructor));
#define MALLOC_TRACE(format, args...) \
- if (info.clo_trace_malloc) \
- VALGRIND_INTERNAL_PRINTF(format, ## args )
+ if (info.clo_trace_malloc) { \
+ VALGRIND_INTERNAL_PRINTF(format, ## args ); }
/* Below are new versions of malloc, __builtin_new, free,
__builtin_delete, calloc, realloc, memalign, and friends.
|