summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 05:21:31 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 05:21:31 +0000
commitaf7606776af9f19b82542a3575285b84da82a912 (patch)
tree4fa4d7c5ca123882f0048dab0d84a9224712a5c8
parent925dacf96dca1ca09c58024df2e41aaea524c722 (diff)
downloadrockbox-af7606776af9f19b82542a3575285b84da82a912.tar.gz
rockbox-af7606776af9f19b82542a3575285b84da82a912.zip
dbg_partitions: make static
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31556 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c2
-rw-r--r--apps/debug_menu.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index d31bf2bf6b..48664a1762 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -583,7 +583,7 @@ static const char* dbg_partitions_getname(int selected_item, void *data,
583 return buffer; 583 return buffer;
584} 584}
585 585
586bool dbg_partitions(void) 586static bool dbg_partitions(void)
587{ 587{
588 struct simplelist_info info; 588 struct simplelist_info info;
589 simplelist_info_init(&info, "Partition Info", 4, NULL); 589 simplelist_info_init(&info, "Partition Info", 4, NULL);
diff --git a/apps/debug_menu.h b/apps/debug_menu.h
index 17a9c2e094..7926ffcd3b 100644
--- a/apps/debug_menu.h
+++ b/apps/debug_menu.h
@@ -26,7 +26,6 @@ bool run_debug_screen(char* screen);
26 26
27#ifndef SIMULATOR 27#ifndef SIMULATOR
28extern bool dbg_ports(void); 28extern bool dbg_ports(void);
29extern bool dbg_partitions(void);
30#endif 29#endif
31 30
32#endif 31#endif