diff options
| author | William Wilgus <me.theuser@yahoo.com> | 2018-10-15 23:04:04 -0400 |
|---|---|---|
| committer | William Wilgus <me.theuser@yahoo.com> | 2018-10-18 00:06:31 +0200 |
| commit | dd40c46d50f9f22643b828e80783d3576b9c1d50 (patch) | |
| tree | b9700f7cbe53bb10e89d91b0c3cf1fea686eb813 /apps/debug_menu.h | |
| parent | e6b23a8f049a89f9f6254a7fa186d33dc65b0ba3 (diff) | |
| download | rockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.zip rockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.tar.gz rockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.tar.bz2 rockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.tar.xz | |
Fix menu warnings
change offending bool return to int
warning: cast between incompatible function types from
'_Bool (*)(void)' to 'int (*)(void)' [-Wcast-function-type]
forgot to remove -- typedef int (*menu_function)(void);
Change-Id: Ie4c8d3ddb0fb7843c4ec584203350d658d6bee3e
Diffstat (limited to 'apps/debug_menu.h')
| -rw-r--r-- | apps/debug_menu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.h b/apps/debug_menu.h index 664a1ba..1335cb1 100644 --- a/apps/debug_menu.h +++ b/apps/debug_menu.h @@ -21,7 +21,7 @@ #ifndef _DEBUG_MENU_H #define _DEBUG_MENU_H -bool debug_menu(void); +int debug_menu(void); bool run_debug_screen(char* screen); #endif |