From d04e3b6291ec7f1ddb8ccedb87ca5316185d462c Mon Sep 17 00:00:00 2001 From: jdgleaver Date: Tue, 14 May 2019 17:34:17 +0100 Subject: [PATCH] =?UTF-8?q?Attempt=20to=20fix=20build=20error:=20invalid?= =?UTF-8?q?=20conversion=20from=20=E2=80=98void*=E2=80=99=20to=20=E2=80=98?= =?UTF-8?q?retro=5Ftask=5Ft*=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/task_pl_thumbnail_download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/task_pl_thumbnail_download.c b/tasks/task_pl_thumbnail_download.c index 850b320405..8a8f92a61b 100644 --- a/tasks/task_pl_thumbnail_download.c +++ b/tasks/task_pl_thumbnail_download.c @@ -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); } } }