summaryrefslogtreecommitdiff
path: root/apps/menu.h
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2018-10-15 23:04:04 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2018-10-18 00:06:31 +0200
commitdd40c46d50f9f22643b828e80783d3576b9c1d50 (patch)
treeb9700f7cbe53bb10e89d91b0c3cf1fea686eb813 /apps/menu.h
parente6b23a8f049a89f9f6254a7fa186d33dc65b0ba3 (diff)
downloadrockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.tar.gz
rockbox-dd40c46d50f9f22643b828e80783d3576b9c1d50.zip
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/menu.h')
-rw-r--r--apps/menu.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/menu.h b/apps/menu.h
index ee2d9e7f40..df5f7ced9f 100644
--- a/apps/menu.h
+++ b/apps/menu.h
@@ -41,7 +41,6 @@ enum menu_item_type {
41}; 41};
42#define MENU_TYPE_MASK 0xF /* MT_* type */ 42#define MENU_TYPE_MASK 0xF /* MT_* type */
43 43
44typedef int (*menu_function)(void);
45struct menu_func { 44struct menu_func {
46 union { 45 union {
47 int (*function_w_param)(void* param); /* intptr_t instead of void* 46 int (*function_w_param)(void* param); /* intptr_t instead of void*