summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-08-16 08:32:43 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-08-16 08:32:43 +0000
commit1d282403308691a627e6aec763e5cd9b68469298 (patch)
treebeb31de6cf43055b92d209647c8af2f4b36e3d57 /firmware
parentd3fde76fc7842f231888cf7d4e7ba11251c5f13d (diff)
downloadrockbox-1d282403308691a627e6aec763e5cd9b68469298.tar.gz
rockbox-1d282403308691a627e6aec763e5cd9b68469298.zip
Enlarged the buffer for DEBUGF()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7333 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/debug.c b/firmware/debug.c
index 33b55a5c41..ba19a9616a 100644
--- a/firmware/debug.c
+++ b/firmware/debug.c
@@ -24,8 +24,8 @@
#include "cpu.h"
#ifdef DEBUG
-static char debugmembuf[100];
-static char debugbuf[200];
+static char debugmembuf[200];
+static char debugbuf[400];
#endif
#ifndef SIMULATOR /* allow non archos platforms to display output */