summaryrefslogtreecommitdiff
path: root/firmware/malloc/bysize.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-05-16 14:16:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-05-16 14:16:48 +0000
commitd902f94313fe24826cfd2719bb6cc63ae8157a13 (patch)
tree51d40901073683b720cb963304074dbe50e71a37 /firmware/malloc/bysize.c
parenta1d678444c713218bc18ae7bc7b2f497da512a18 (diff)
downloadrockbox-d902f94313fe24826cfd2719bb6cc63ae8157a13.zip
rockbox-d902f94313fe24826cfd2719bb6cc63ae8157a13.tar.gz
rockbox-d902f94313fe24826cfd2719bb6cc63ae8157a13.tar.bz2
rockbox-d902f94313fe24826cfd2719bb6cc63ae8157a13.tar.xz
DEBUG => DEBUG_MALLOC, the symbol is already in use!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@596 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/malloc/bysize.c')
-rw-r--r--firmware/malloc/bysize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/malloc/bysize.c b/firmware/malloc/bysize.c
index c8e2759..4371595 100644
--- a/firmware/malloc/bysize.c
+++ b/firmware/malloc/bysize.c
@@ -388,7 +388,7 @@ Tree *removebyaddr(Tree *t, Tree *remove)
return x;
}
-#ifdef DEBUG
+#ifdef DEBUG_MALLOC
static
int printtree(Tree * t, int d, char output)
{
@@ -441,7 +441,7 @@ char *bmalloc_obtainbysize( size_t size)
return (char *)receive;
}
-#ifdef DEBUG
+#ifdef DEBUG_MALLOC
void bmalloc_print_sizes(void)
{
printtree(chunkHead, 0, 1);