From: Sangjin Lee Date: Thu, 27 Jul 2017 07:15:53 +0000 (+0900) Subject: fix build warnings X-Git-Tag: accepted/tizen/4.0/unified/20170816.011633~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de18f877bb7771d356406992c4511ff09969ceba;p=platform%2Fupstream%2Fefl.git fix build warnings Change-Id: I8fd17f70203dc79eea52562bf91a25171b336881 --- diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c index d9e46e7..5cab484 100644 --- a/src/lib/ecore_evas/ecore_evas.c +++ b/src/lib/ecore_evas/ecore_evas.c @@ -2261,7 +2261,7 @@ ecore_evas_aux_hints_supported_get(const Ecore_Evas *ee) iface = (Ecore_Evas_Interface_Wayland *)_ecore_evas_interface_get(ee, "wayland"); if ((iface) && (iface->supported_aux_hints_get)) - iface->supported_aux_hints_get(ee); + iface->supported_aux_hints_get((Ecore_Evas *)ee); } return ee->prop.aux_hint.supported_list; diff --git a/src/modules/evas/engines/wayland_shm/evas_shm.c b/src/modules/evas/engines/wayland_shm/evas_shm.c index 74c250c..3ad09c2 100755 --- a/src/modules/evas/engines/wayland_shm/evas_shm.c +++ b/src/modules/evas/engines/wayland_shm/evas_shm.c @@ -389,7 +389,7 @@ _shm_leaf_release(Shm_Leaf *leaf) } static void -_shm_wl_registry_global(void *data EINA_UNUSED, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version) +_shm_wl_registry_global(void *data EINA_UNUSED, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version EINA_UNUSED) { if (!strcmp(interface, "tizen_surface_shm")) shmdat.tzsurf = wl_registry_bind(registry, name, &tizen_surface_shm_interface, 2);