forked from len0rd/rockbox
Fix menu warnings
change offending bool return to int warning: cast between incompatible function types from '_Bool (*)(void)' to 'int (*)(void)' [-Wcast-function-type] forgot to remove -- typedef int (*menu_function)(void); Change-Id: Ie4c8d3ddb0fb7843c4ec584203350d658d6bee3e
This commit is contained in:
parent
e6b23a8f04
commit
dd40c46d50
23 changed files with 62 additions and 58 deletions
|
|
@ -31,8 +31,8 @@
|
|||
#define TAGMENU_MAX_MENUS 32
|
||||
#define TAGMENU_MAX_FMTS 32
|
||||
|
||||
bool tagtree_export(void);
|
||||
bool tagtree_import(void);
|
||||
int tagtree_export(void);
|
||||
int tagtree_import(void);
|
||||
void tagtree_init(void) INIT_ATTR;
|
||||
int tagtree_enter(struct tree_context* c);
|
||||
void tagtree_exit(struct tree_context* c);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue