summaryrefslogtreecommitdiffstats
path: root/firmware/debug.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2002-05-30 19:50:20 +0000
committerBjörn Stenberg <bjorn@haxx.se>2002-05-30 19:50:20 +0000
commit80361f88818ad1ce2ebc00a10f7aa8de1605b3a5 (patch)
tree6c9f1f127135f980f6d54c8535cd6c193b57b6f4 /firmware/debug.c
parenteacbef9466197fe4b4344fc51a0e31dc19cbcb05 (diff)
downloadrockbox-80361f88818ad1ce2ebc00a10f7aa8de1605b3a5.tar.gz
rockbox-80361f88818ad1ce2ebc00a10f7aa8de1605b3a5.zip
debugbuf and debugmembuf does not have to be global
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@834 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/debug.c')
-rw-r--r--firmware/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/debug.c b/firmware/debug.c
index 6c688abb06..23ba8f8117 100644
--- a/firmware/debug.c
+++ b/firmware/debug.c
@@ -22,8 +22,8 @@
#include <stdarg.h>
#include "config.h"
-char debugmembuf[100];
-char debugbuf[200];
+static char debugmembuf[100];
+static char debugbuf[200];
#ifndef SIMULATOR /* allow non archos platforms to display output */