This commit is contained in:
twinaphex 2016-05-06 05:31:17 +02:00
parent b5e7861125
commit 9cff56ea62
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ error:
return NULL;
}
http_transfer_info_t *http_task_get_transfer_list()
http_transfer_info_t *http_task_get_transfer_list(void)
{
http_transfer_info_t *list = NULL;
task_finder_data_t find_data;

View File

@ -44,7 +44,7 @@ typedef struct http_transfer_info
void *rarch_task_push_http_transfer(const char *url, const char *type,
retro_task_callback_t cb, void *userdata);
http_transfer_info_t *http_task_get_transfer_list();
http_transfer_info_t *http_task_get_transfer_list(void);
void http_task_free_transfer_list(http_transfer_info_t *list);
#endif