these should be static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13288 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
fa67e5fd4d
commit
507345000d
1 changed files with 2 additions and 2 deletions
|
@ -2373,7 +2373,7 @@ static const struct the_menu_item menuitems[] = {
|
|||
{"cpu_boost log",cpu_boost_log},
|
||||
#endif
|
||||
};
|
||||
int menu_action_callback(int btn, struct gui_synclist *lists)
|
||||
static int menu_action_callback(int btn, struct gui_synclist *lists)
|
||||
{
|
||||
if (btn == ACTION_STD_OK)
|
||||
{
|
||||
|
@ -2382,7 +2382,7 @@ int menu_action_callback(int btn, struct gui_synclist *lists)
|
|||
}
|
||||
return btn;
|
||||
}
|
||||
char* dbg_menu_getname(int item, void * data, char *buffer)
|
||||
static char* dbg_menu_getname(int item, void * data, char *buffer)
|
||||
{
|
||||
(void)data; (void)buffer;
|
||||
return menuitems[item].desc;
|
||||
|
|
Loading…
Reference in a new issue