From 8da330739ca40047ecd2e81c2f43a80868e5ffd4 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 8 Nov 2018 15:28:23 +0000 Subject: [PATCH] eeze mount tool - warn - fix prototypes used for ecore events --- src/bin/eeze/eeze_mount/eeze_mount.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/bin/eeze/eeze_mount/eeze_mount.c b/src/bin/eeze/eeze_mount/eeze_mount.c index 929437629c..04c644f4ef 100644 --- a/src/bin/eeze/eeze_mount/eeze_mount.c +++ b/src/bin/eeze/eeze_mount/eeze_mount.c @@ -29,24 +29,24 @@ static const Ecore_Getopt opts = } }; -void -_mount_cb(void *data, int type, Eeze_Event_Disk_Mount *e) +static Eina_Bool +_mount_cb(void *data EINA_UNUSED, int type EINA_UNUSED, void *info) { - (void)data; - (void)type; + Eeze_Event_Disk_Mount *e = info; printf("Success!\n"); eeze_disk_free(e->disk); ecore_main_loop_quit(); + return EINA_TRUE; } -void -_error_cb(void *data, int type, Eeze_Event_Disk_Error *de) +static Eina_Bool +_error_cb(void *data EINA_UNUSED, int type EINA_UNUSED, void *info) { - (void)data; - (void)type; + Eeze_Event_Disk_Error *de = info; printf("Could not mount disk with /dev/ path: %s!\n", eeze_disk_devpath_get(de->disk)); eeze_disk_free(de->disk); ecore_main_loop_quit(); + return EINA_TRUE; } int @@ -116,8 +116,8 @@ main(int argc, char *argv[]) eeze_disk_mountopts_set(disk, f | EEZE_DISK_MOUNTOPT_LOOP); } } - ecore_event_handler_add(EEZE_EVENT_DISK_MOUNT, (Ecore_Event_Handler_Cb)_mount_cb, NULL); - ecore_event_handler_add(EEZE_EVENT_DISK_ERROR, (Ecore_Event_Handler_Cb)_error_cb, NULL); + ecore_event_handler_add(EEZE_EVENT_DISK_MOUNT, _mount_cb, NULL); + ecore_event_handler_add(EEZE_EVENT_DISK_ERROR, _error_cb, NULL); eeze_disk_mountopts_get(disk); if (!eeze_disk_mount(disk)) {