summaryrefslogtreecommitdiff
path: root/firmware/malloc/bysize.c
diff options
context:
space:
mode:
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);