array_free(): enable debug code only when DEBUG_ARRAY is #define'd.

This commit is contained in:
Alexander Barton 2006-12-28 12:53:41 +00:00
parent 5c78230283
commit f74781647a
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
#include "array.h"
static char UNUSED id[] = "$Id: array.c,v 1.13 2006/12/17 22:52:43 fw Exp $";
static char UNUSED id[] = "$Id: array.c,v 1.14 2006/12/28 12:53:41 alex Exp $";
#include <assert.h>
@ -270,7 +270,7 @@ void
array_free(array * a)
{
assert(a != NULL);
#ifdef DEBUG
#ifdef DEBUG_ARRAY
Log(LOG_DEBUG,
"array_free(): %u bytes free'd (%u bytes still used at time of free()).",
a->allocated, a->used);