raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=35f4b44d00f62711e93f741d031043971a588949

commit 35f4b44d00f62711e93f741d031043971a588949
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
Date:   Sat Jan 12 01:47:34 2019 +0000

    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;

-- 


Reply via email to