summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index ea53d445fd..4ca8b3fa4f 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -141,8 +141,8 @@ static char thread_status_char(unsigned status)
141 return thread_status_chars[status]; 141 return thread_status_chars[status];
142} 142}
143 143
144static char* threads_getname(int selected_item, void *data, 144static const char* threads_getname(int selected_item, void *data,
145 char *buffer, size_t buffer_len) 145 char *buffer, size_t buffer_len)
146{ 146{
147 (void)data; 147 (void)data;
148 struct thread_entry *thread; 148 struct thread_entry *thread;
@@ -183,6 +183,7 @@ static char* threads_getname(int selected_item, void *data,
183 183
184 return buffer; 184 return buffer;
185} 185}
186
186static int dbg_threads_action_callback(int action, struct gui_synclist *lists) 187static int dbg_threads_action_callback(int action, struct gui_synclist *lists)
187{ 188{
188 (void)lists; 189 (void)lists;
@@ -783,8 +784,8 @@ static bool dbg_hw_info(void)
783#endif /* !SIMULATOR */ 784#endif /* !SIMULATOR */
784 785
785#ifndef SIMULATOR 786#ifndef SIMULATOR
786static char* dbg_partitions_getname(int selected_item, void *data, 787static const char* dbg_partitions_getname(int selected_item, void *data,
787 char *buffer, size_t buffer_len) 788 char *buffer, size_t buffer_len)
788{ 789{
789 (void)data; 790 (void)data;
790 int partition = selected_item/2; 791 int partition = selected_item/2;
@@ -2796,12 +2797,14 @@ static int menu_action_callback(int btn, struct gui_synclist *lists)
2796 } 2797 }
2797 return btn; 2798 return btn;
2798} 2799}
2799static char* dbg_menu_getname(int item, void * data, 2800
2800 char *buffer, size_t buffer_len) 2801static const char* dbg_menu_getname(int item, void * data,
2802 char *buffer, size_t buffer_len)
2801{ 2803{
2802 (void)data; (void)buffer; (void)buffer_len; 2804 (void)data; (void)buffer; (void)buffer_len;
2803 return menuitems[item].desc; 2805 return menuitems[item].desc;
2804} 2806}
2807
2805bool debug_menu(void) 2808bool debug_menu(void)
2806{ 2809{
2807 struct simplelist_info info; 2810 struct simplelist_info info;