diff options
Diffstat (limited to 'src/utils.cc')
-rw-r--r-- | src/utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.cc b/src/utils.cc index 0cfe9e90..42600db3 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -189,7 +189,7 @@ static void trace_delete_func(void * ptr, const char * which) if (i == live_memory->end()) { i = freed_memory->find(ptr); if (i != freed_memory->end()) - VERIFY(! "Freeing a block of memory twice"); + VERIFY("Freeing a block of memory twice" == NULL); #if 0 // There can be memory allocated by Boost or the standard library, which // was allocated before memory tracing got turned on, that the system |