evas-software-x11: Remove improper EINA_UNUSED for function parameter

Summary: In the _native_bind_cb function, the data parameter is
actually used inside here, so having EINA_UNUSED on the function
parameter is incorrect.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-02-27 10:29:06 -05:00
parent 99e0695e42
commit 24c92d8caf
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ evas_xlib_image_update(void *data EINA_UNUSED, void *image, int x, int y, int w,
}
static void
_native_bind_cb(void *data EINA_UNUSED, void *image, int x, int y, int w, int h)
_native_bind_cb(void *data, void *image, int x, int y, int w, int h)
{
RGBA_Image *im = image;
Native *n = im->native.data;