summaryrefslogtreecommitdiff
path: root/bootloader/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/common.c')
-rw-r--r--bootloader/common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/common.c b/bootloader/common.c
index 362c3b4d11..1099b9f453 100644
--- a/bootloader/common.c
+++ b/bootloader/common.c
@@ -68,7 +68,7 @@ void reset_screen(void)
68#endif 68#endif
69} 69}
70 70
71void printf(const char *format, ...) 71int printf(const char *format, ...)
72{ 72{
73 int len; 73 int len;
74 unsigned char *ptr; 74 unsigned char *ptr;
@@ -91,6 +91,7 @@ void printf(const char *format, ...)
91 if(remote_line >= LCD_REMOTE_HEIGHT/SYSFONT_HEIGHT) 91 if(remote_line >= LCD_REMOTE_HEIGHT/SYSFONT_HEIGHT)
92 remote_line = 0; 92 remote_line = 0;
93#endif 93#endif
94 return len;
94} 95}
95 96
96char *strerror(int error) 97char *strerror(int error)