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.tar.gz
rockbox-d902f94313fe24826cfd2719bb6cc63ae8157a13.zip
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 c8e2759cec..437159579c 100644
--- a/firmware/malloc/bysize.c
+++ b/firmware/malloc/bysize.c
@@ -388,7 +388,7 @@ Tree *removebyaddr(Tree *t, Tree *remove)
388 return x; 388 return x;
389} 389}
390 390
391#ifdef DEBUG 391#ifdef DEBUG_MALLOC
392static 392static
393int printtree(Tree * t, int d, char output) 393int printtree(Tree * t, int d, char output)
394{ 394{
@@ -441,7 +441,7 @@ char *bmalloc_obtainbysize( size_t size)
441 return (char *)receive; 441 return (char *)receive;
442} 442}
443 443
444#ifdef DEBUG 444#ifdef DEBUG_MALLOC
445void bmalloc_print_sizes(void) 445void bmalloc_print_sizes(void)
446{ 446{
447 printtree(chunkHead, 0, 1); 447 printtree(chunkHead, 0, 1);