mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 14:42:30 +00:00
Clean warnings
This commit is contained in:
parent
71748d27f5
commit
1db2f20665
@ -232,7 +232,7 @@ static int zlib_stream_decompress_data_to_file_iterate(
|
|||||||
|
|
||||||
zip_context->boffset += rd;
|
zip_context->boffset += rd;
|
||||||
zip_context->zstream->next_in = dptr;
|
zip_context->zstream->next_in = dptr;
|
||||||
zip_context->zstream->avail_in = rd;
|
zip_context->zstream->avail_in = (uInt)rd;
|
||||||
|
|
||||||
if (inflate(zip_context->zstream, 0) < 0)
|
if (inflate(zip_context->zstream, 0) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -4654,7 +4654,6 @@ static int action_ok_core_updater_list(const char *path,
|
|||||||
static void cb_net_generic_subdir(retro_task_t *task,
|
static void cb_net_generic_subdir(retro_task_t *task,
|
||||||
void *task_data, void *user_data, const char *err)
|
void *task_data, void *user_data, const char *err)
|
||||||
{
|
{
|
||||||
http_transfer_data_t *data = (http_transfer_data_t*)task_data;
|
|
||||||
if (user_data)
|
if (user_data)
|
||||||
free(user_data);
|
free(user_data);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user