1
0
Fork 0
forked from len0rd/rockbox

numerous gcc4 (un)signed warnings killed

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8121 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-12-02 08:08:54 +00:00
parent 1e4d1f8de7
commit 72f423570f
8 changed files with 47 additions and 45 deletions

View file

@ -47,8 +47,8 @@ void doevents()
/* convenience macro for printing loading state */
#define PUTS(str) do { \
rb->lcd_putsxy(1, y, str); \
rb->lcd_getstringsize(str, &w, &h); \
rb->lcd_putsxy(1, y, (unsigned char *)str); \
rb->lcd_getstringsize((unsigned char *)str, &w, &h); \
y += h + 1; \
} while (0)