From dd40c46d50f9f22643b828e80783d3576b9c1d50 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Mon, 15 Oct 2018 23:04:04 -0400 Subject: 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 --- apps/tree.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/tree.c') diff --git a/apps/tree.c b/apps/tree.c index 6b49691..16e0f98 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -912,7 +912,7 @@ static int dirbrowse(void) return true; } -bool create_playlist(void) +int create_playlist(void) { char filename[MAX_PATH + 16]; /* add enough space for extension */ @@ -924,14 +924,14 @@ bool create_playlist(void) if (kbd_input(filename, MAX_PATH)) - return false; + return 0; splashf(0, "%s %s", str(LANG_CREATING), filename); trigger_cpu_boost(); catalog_add_to_a_playlist(tc.currdir, ATTR_DIRECTORY, true, filename); cancel_cpu_boost(); - return true; + return 1; } void browse_context_init(struct browse_context *browse, -- cgit v1.1