(menu_list.c) Don't make some functions inline

This commit is contained in:
twinaphex 2015-06-11 02:31:31 +02:00
parent de26da7409
commit 8752776587

View File

@ -40,7 +40,7 @@ menu_list_t *menu_list_get_ptr(void)
* *
* Returns: true (1) if entry is a directory, otherwise false (0). * Returns: true (1) if entry is a directory, otherwise false (0).
**/ **/
static INLINE bool menu_list_elem_is_dir(file_list_t *list, static bool menu_list_elem_is_dir(file_list_t *list,
unsigned offset) unsigned offset)
{ {
const char *path = NULL; const char *path = NULL;
@ -62,7 +62,7 @@ static INLINE bool menu_list_elem_is_dir(file_list_t *list,
* *
* Returns: first character of element in file list. * Returns: first character of element in file list.
**/ **/
static INLINE int menu_list_elem_get_first_char( static int menu_list_elem_get_first_char(
file_list_t *list, unsigned offset) file_list_t *list, unsigned offset)
{ {
int ret; int ret;