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>
This commit is contained in:
Chris Michael 2015-07-08 11:01:13 -04:00
parent b7a277efa0
commit 034c297566
1 changed files with 1 additions and 1 deletions

View File

@ -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;