summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@samsung.com>2013-02-21 17:14:45 +0900
committerCedric BAIL <cedric.bail@samsung.com>2013-02-21 17:19:35 +0900
commita05b4b4e37220548711d92e0f5a1e858977dd258 (patch)
tree2fa68f79d8a8795fd59db1272f01cdaf7eef5585
parentfe21e281a73bbd94336215b0f20896ff258c686d (diff)
downloadefl-a05b4b4e37220548711d92e0f5a1e858977dd258.tar.gz
eeze: fix build with recent Eina change.
-rw-r--r--src/lib/eeze/eeze_disk_libmount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eeze/eeze_disk_libmount.c b/src/lib/eeze/eeze_disk_libmount.c
index 885f313cc0..9cc1980bb2 100644
--- a/src/lib/eeze/eeze_disk_libmount.c
+++ b/src/lib/eeze/eeze_disk_libmount.c
@@ -50,7 +50,7 @@ static libmnt_lock *_eeze_mtab_lock = NULL;
extern Eina_List *_eeze_disks;
static libmnt_table *_eeze_mount_tab_parse(const char *filename);
-static void _eeze_mount_tab_watcher(void *data, Ecore_File_Monitor *mon __UNUSED__, Ecore_File_Event event __UNUSED__, const char *path);
+static void _eeze_mount_tab_watcher(void *data, Ecore_File_Monitor *mon EINA_UNUSED, Ecore_File_Event event EINA_UNUSED, const char *path);
static Eina_Bool
_eeze_mount_lock_mtab(void)
@@ -80,7 +80,7 @@ _eeze_mount_unlock_mtab(void)
static int
-_eeze_mount_tab_parse_errcb(libmnt_table *tab __UNUSED__, const char *filename, int line)
+_eeze_mount_tab_parse_errcb(libmnt_table *tab EINA_UNUSED, const char *filename, int line)
{
ERR("%s:%d: could not parse line!", filename, line); /* most worthless error reporting ever. */
return -1;
@@ -111,7 +111,7 @@ _eeze_mount_tab_parse(const char *filename)
}
static void
-_eeze_mount_tab_watcher(void *data, Ecore_File_Monitor *mon __UNUSED__, Ecore_File_Event event __UNUSED__, const char *path)
+_eeze_mount_tab_watcher(void *data, Ecore_File_Monitor *mon EINA_UNUSED, Ecore_File_Event event EINA_UNUSED, const char *path)
{
libmnt_table *bak;