Attempt to fix build error: invalid conversion from ‘void*’ to ‘retro_task_t*’

This commit is contained in:
jdgleaver 2019-05-14 17:34:17 +01:00
parent 154957505c
commit d04e3b6291

View File

@ -161,7 +161,7 @@ static void download_pl_thumbnail(pl_thumb_handle_t *pl_thumb)
/* Note: We don't actually care if this fails since that
* just means the file is missing from the server, so it's
* not something we can handle here... */
pl_thumb->http_task = task_push_http_transfer(url, true, NULL, cb_generic_download, transf);
pl_thumb->http_task = (retro_task_t*)task_push_http_transfer(url, true, NULL, cb_generic_download, transf);
}
}
}