evas-software-x11: Remove improper EINA_UNUSED for function parameter
authorChris Michael <cp.michael@samsung.com>
Fri, 27 Feb 2015 15:29:06 +0000 (10:29 -0500)
committerChris Michael <cp.michael@samsung.com>
Fri, 27 Feb 2015 15:29:06 +0000 (10:29 -0500)
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>
src/modules/evas/engines/software_x11/evas_xlib_image.c

index 166f22a..615d11a 100644 (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;