dbg_partitions: make static

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31556 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2012-01-04 05:21:31 +00:00
parent 925dacf96d
commit af7606776a
2 changed files with 1 additions and 2 deletions

View file

@ -583,7 +583,7 @@ static const char* dbg_partitions_getname(int selected_item, void *data,
return buffer;
}
bool dbg_partitions(void)
static bool dbg_partitions(void)
{
struct simplelist_info info;
simplelist_info_init(&info, "Partition Info", 4, NULL);

View file

@ -26,7 +26,6 @@ bool run_debug_screen(char* screen);
#ifndef SIMULATOR
extern bool dbg_ports(void);
extern bool dbg_partitions(void);
#endif
#endif