Fixed RFILE var declaration to C89 standard

This commit is contained in:
pyroesp 2015-10-22 17:09:44 +02:00
parent e30356858b
commit 0d02ce2941
1 changed files with 2 additions and 2 deletions

View File

@ -1487,8 +1487,8 @@ void rarch_playlist_load_content(void *data, unsigned idx)
const char *path = NULL;
const char *core_path = NULL;
char *path_check = NULL;
char *path_tolower = NULL;
RFILE *fp = NULL;
char *path_tolower = NULL;
RFILE *fp = NULL;
content_playlist_t *playlist = (content_playlist_t*)data;
menu_handle_t *menu = menu_driver_get_ptr();
settings_t *settings = config_get_ptr();