1
0
Fork 0
forked from len0rd/rockbox

use an unsigned char * for the string

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2312 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-09-17 07:20:31 +00:00
parent df322a6c30
commit f2873d255a

View file

@ -30,7 +30,7 @@ typedef enum {
} Menu;
struct menu_items {
char *desc;
unsigned char *desc;
Menu (*function) (void);
};