summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2015-07-08 11:01:13 -0400
committerChris Michael <cp.michael@samsung.com>2015-07-08 11:48:41 -0400
commit034c297566ddfed0de1841e89355e80b946241b3 (patch)
tree6bd15ab9ff3fc8f232a322a6e7774e7c7ba907ba
parentb7a277efa089b8b4479e39a752e19cb1187dbd23 (diff)
downloadefl-034c297566ddfed0de1841e89355e80b946241b3.tar.gz
ecore-wayland: Remove improper use of EINA_UNUSED
Summary: 'version' is actually used inside this function so no need for EINA_UNUSED here. @fix Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/lib/ecore_wayland/ecore_wl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_wayland/ecore_wl.c b/src/lib/ecore_wayland/ecore_wl.c
index a5d7bd0dc3..fff8dd6de3 100644
--- a/src/lib/ecore_wayland/ecore_wl.c
+++ b/src/lib/ecore_wayland/ecore_wl.c
@@ -624,7 +624,7 @@ _ecore_wl_cb_handle_data(void *data, Ecore_Fd_Handler *hdl)
}
static void
-_ecore_wl_cb_handle_global(void *data, struct wl_registry *registry, unsigned int id, const char *interface, unsigned int version EINA_UNUSED)
+_ecore_wl_cb_handle_global(void *data, struct wl_registry *registry, unsigned int id, const char *interface, unsigned int version)
{
Ecore_Wl_Display *ewd;
Ecore_Wl_Global *global;