summaryrefslogtreecommitdiff
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
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
-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 @@
22#include <stdarg.h> 22#include <stdarg.h>
23#include "config.h" 23#include "config.h"
24 24
25char debugmembuf[100]; 25static char debugmembuf[100];
26char debugbuf[200]; 26static char debugbuf[200];
27 27
28#ifndef SIMULATOR /* allow non archos platforms to display output */ 28#ifndef SIMULATOR /* allow non archos platforms to display output */
29 29