From 957f58a033e45233d8e233a6e52f8e702d4d264d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 Feb 2016 15:46:24 +0100 Subject: [PATCH] Rename static function --- menu/menu_content.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/menu/menu_content.c b/menu/menu_content.c index 611a9b1889..f137d81323 100644 --- a/menu/menu_content.c +++ b/menu/menu_content.c @@ -215,7 +215,7 @@ static bool menu_content_load_from_playlist(void *data) } /** - * menu_content_defer_core: + * menu_content_find_first_core: * @core_info : Core info list handle. * @dir : Directory. Gets joined with @path. * @path : Path. Gets joined with @dir. @@ -230,7 +230,7 @@ static bool menu_content_load_from_playlist(void *data) * selection needs to be made from a list, otherwise * returns -1 and fills in @s with path to core. **/ -static bool menu_content_defer_core(void *data) +static bool menu_content_find_first_core(void *data) { char new_core_path[PATH_MAX_LENGTH]; const core_info_t *info = NULL; @@ -292,7 +292,7 @@ bool menu_content_ctl(enum menu_content_ctl_state state, void *data) switch (state) { case MENU_CONTENT_CTL_FIND_FIRST_CORE: - return menu_content_defer_core(data); + return menu_content_find_first_core(data); case MENU_CONTENT_CTL_LOAD: return menu_content_load(); case MENU_CONTENT_CTL_LOAD_PLAYLIST: