diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2012-01-04 05:21:31 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2012-01-04 05:21:31 +0000 |
| commit | af7606776af9f19b82542a3575285b84da82a912 (patch) | |
| tree | 4fa4d7c5ca123882f0048dab0d84a9224712a5c8 | |
| parent | 925dacf96dca1ca09c58024df2e41aaea524c722 (diff) | |
| download | rockbox-af7606776af9f19b82542a3575285b84da82a912.zip rockbox-af7606776af9f19b82542a3575285b84da82a912.tar.gz rockbox-af7606776af9f19b82542a3575285b84da82a912.tar.bz2 rockbox-af7606776af9f19b82542a3575285b84da82a912.tar.xz | |
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.c | 2 | ||||
| -rw-r--r-- | apps/debug_menu.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index d31bf2b..48664a1 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, return buffer; } -bool dbg_partitions(void) +static bool dbg_partitions(void) { struct simplelist_info info; simplelist_info_init(&info, "Partition Info", 4, NULL); diff --git a/apps/debug_menu.h b/apps/debug_menu.h index 17a9c2e..7926ffc 100644 --- a/apps/debug_menu.h +++ b/apps/debug_menu.h @@ -26,7 +26,6 @@ bool run_debug_screen(char* screen); #ifndef SIMULATOR extern bool dbg_ports(void); -extern bool dbg_partitions(void); #endif #endif |