summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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