diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-05-16 14:16:48 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-16 14:16:48 +0000 |
| commit | d902f94313fe24826cfd2719bb6cc63ae8157a13 (patch) | |
| tree | 51d40901073683b720cb963304074dbe50e71a37 /firmware/malloc/bysize.c | |
| parent | a1d678444c713218bc18ae7bc7b2f497da512a18 (diff) | |
| download | rockbox-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.c | 4 |
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); |