summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-01-27 11:28:25 +0000
committerThomas Martitz <kugel@rockbox.org>2009-01-27 11:28:25 +0000
commit7e3a6ddb8a5c3ca4f5ca4f967a3bc508fa544efa (patch)
tree0c6f17096eb33c3fc6f5588b184d552f391daffe /firmware
parenta43b0db3d10aeb04e78494074f90b553b1a8ae59 (diff)
downloadrockbox-7e3a6ddb8a5c3ca4f5ca4f967a3bc508fa544efa.tar.gz
rockbox-7e3a6ddb8a5c3ca4f5ca4f967a3bc508fa544efa.zip
Fix yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19867 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/as3525/debug-as3525.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/firmware/target/arm/as3525/debug-as3525.c b/firmware/target/arm/as3525/debug-as3525.c
index a08d33e3da..8d7c1468d8 100644
--- a/firmware/target/arm/as3525/debug-as3525.c
+++ b/firmware/target/arm/as3525/debug-as3525.c
@@ -26,7 +26,7 @@
26#include "font.h" 26#include "font.h"
27#include "system.h" 27#include "system.h"
28#include "sprintf.h" 28#include "sprintf.h"
29 29#include "string.h"
30 30
31#define _DEBUG_PRINTF(a,varargs...) \ 31#define _DEBUG_PRINTF(a,varargs...) \
32 snprintf(buf, sizeof(buf), (a), ##varargs); lcd_puts(0,line++,buf) 32 snprintf(buf, sizeof(buf), (a), ##varargs); lcd_puts(0,line++,buf)
@@ -42,7 +42,6 @@ bool __dbg_ports(void)
42{ 42{
43 char buf[50]; 43 char buf[50];
44 int line, i; 44 int line, i;
45 char counter = 0;
46 45
47 lcd_clear_display(); 46 lcd_clear_display();
48 lcd_setfont(FONT_SYSFIXED); 47 lcd_setfont(FONT_SYSFIXED);