From 35f4b44d00f62711e93f741d031043971a588949 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 12 Jan 2019 01:47:34 +0000 Subject: [PATCH] fix casts to use void ptr to avoid warning that isnt important --- src/modules/teamwork/e_mod_tw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/teamwork/e_mod_tw.c b/src/modules/teamwork/e_mod_tw.c index e573a1c63..86a8d8fc4 100644 --- a/src/modules/teamwork/e_mod_tw.c +++ b/src/modules/teamwork/e_mod_tw.c @@ -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;