fix casts to use void ptr to avoid warning that isnt important

This commit is contained in:
Carsten Haitzler 2019-01-12 01:47:34 +00:00
parent 63d36aa44a
commit 35f4b44d00
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ media_cleaner_cb(void *data)
if (ic->timestamp >= now)
{
/* stop the idler for now to avoid pointless spinning */
ecore_timer_loop_add(24 * 60 * 60, (Ecore_Task_Cb)tw_idler_start, NULL);
ecore_timer_loop_add(24 * 60 * 60, (void *)tw_idler_start, NULL);
media_cleaner[mcl->video] = NULL;
tw_cache_list[mcl->video] = mcl;
return EINA_FALSE;