From 91a8156a849b69f4b34a0cca3014792b6b0fb731 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 12 Nov 2010 13:28:19 +0000 Subject: [PATCH] * ecore: break Ecore_Thread API once and for all to make it consistent. SVN revision: 54502 --- src/modules/everything-files/e_mod_main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/everything-files/e_mod_main.c b/src/modules/everything-files/e_mod_main.c index 5ddd470c2..9599026c0 100644 --- a/src/modules/everything-files/e_mod_main.c +++ b/src/modules/everything-files/e_mod_main.c @@ -168,7 +168,7 @@ _item_free(Evry_Item *it) } static void -_scan_func(Ecore_Thread *thread __UNUSED__, void *data) +_scan_func(void *data, Ecore_Thread *thread __UNUSED__) { Data *d = data; Plugin *p = d->plugin; @@ -244,7 +244,7 @@ _scan_func(Ecore_Thread *thread __UNUSED__, void *data) } static void -_scan_mime_func(Ecore_Thread *thread __UNUSED__, void *data) +_scan_mime_func(void *data, Ecore_Thread *thread __UNUSED__) { Data *d = data; Evry_Item_File *file; @@ -312,7 +312,7 @@ _append_files(Plugin *p) } static void -_scan_cancel_func(void *data) +_scan_cancel_func(void *data, Ecore_Thread *thread __UNUSED__) { Data *d = data; Plugin *p = d->plugin; @@ -396,7 +396,7 @@ _cache_dir_add(Eina_List *files) } static void -_scan_end_func(void *data) +_scan_end_func(void *data, Ecore_Thread *thread __UNUSED__) { Data *d = data; Plugin *p = d->plugin;