summaryrefslogtreecommitdiff
path: root/apps/tree.c
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/tree.c
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/tree.c')
-rw-r--r--apps/tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 6b496919b0..16e0f988dc 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -912,7 +912,7 @@ static int dirbrowse(void)
912 return true; 912 return true;
913} 913}
914 914
915bool create_playlist(void) 915int create_playlist(void)
916{ 916{
917 char filename[MAX_PATH + 16]; /* add enough space for extension */ 917 char filename[MAX_PATH + 16]; /* add enough space for extension */
918 918
@@ -924,14 +924,14 @@ bool create_playlist(void)
924 924
925 925
926 if (kbd_input(filename, MAX_PATH)) 926 if (kbd_input(filename, MAX_PATH))
927 return false; 927 return 0;
928 splashf(0, "%s %s", str(LANG_CREATING), filename); 928 splashf(0, "%s %s", str(LANG_CREATING), filename);
929 929
930 trigger_cpu_boost(); 930 trigger_cpu_boost();
931 catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename); 931 catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename);
932 cancel_cpu_boost(); 932 cancel_cpu_boost();
933 933
934 return true; 934 return 1;
935} 935}
936 936
937void browse_context_init(struct browse_context *browse, 937void browse_context_init(struct browse_context *browse,