Cleanup some useless casts pt. 2

This commit is contained in:
twinaphex 2014-12-15 17:13:08 +01:00
parent f0dc41757f
commit 63fe97c0a5
5 changed files with 8 additions and 10 deletions

View File

@ -342,9 +342,7 @@ static bool load_content(const struct retro_subsystem_info *special,
{
unsigned i;
bool ret = true;
struct string_list* additional_path_allocs = string_list_new();
struct retro_game_info *info = (struct retro_game_info*)
calloc(content->size, sizeof(*info));
@ -503,9 +501,10 @@ bool init_content_file(void)
}
union string_list_elem_attr attr;
struct string_list *content = string_list_new();
attr.i = 0;
struct string_list *content = (struct string_list*)string_list_new();
if (!content)
return false;

View File

@ -321,7 +321,7 @@ struct string_list *compressed_7zip_file_list_new(const char *path,
{
struct string_list *ext_list = NULL;
struct string_list *list = (struct string_list*)string_list_new();
struct string_list *list = string_list_new();
if (!list)
{
RARCH_ERR("Could not allocate list memory in compressed_7zip_file_list_new\n.");

View File

@ -181,7 +181,7 @@ struct string_list *compressed_zip_file_list_new(const char *path,
const char* ext)
{
struct string_list *ext_list = NULL;
struct string_list *list = (struct string_list*)string_list_new();
struct string_list *list = string_list_new();
if (!list)
{
RARCH_ERR("Could not allocate list memory in compressed_7zip_file_list_new\n.");

View File

@ -77,10 +77,9 @@ const char* config_get_joypad_driver_options(void)
char *options = NULL;
int option_k = 0;
int options_len = 0;
struct string_list *options_l = NULL;
struct string_list *options_l = string_list_new();
attr.i = 0;
options_l = (struct string_list*)string_list_new();
for (option_k = 0; joypad_drivers[option_k]; option_k++)
{

View File

@ -96,9 +96,9 @@ struct string_list *dir_list_new(const char *dir,
{
char path_buf[PATH_MAX];
WIN32_FIND_DATA ffd;
struct string_list *ext_list = NULL, *list = NULL;
struct string_list *ext_list = NULL;
HANDLE hFind = INVALID_HANDLE_VALUE;
list = string_list_new();
struct string_list *list = string_list_new();
if (!list)
return NULL;
@ -196,7 +196,7 @@ struct string_list *dir_list_new(const char *dir,
DIR *directory = NULL;
const struct dirent *entry = NULL;
struct string_list *ext_list = NULL;
struct string_list *list = (struct string_list*)string_list_new();
struct string_list *list = string_list_new();
if (!list)
return NULL;