From 7ac7ffac4def0ff03a514f9aa3c751a3a8e2b9f3 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sun, 28 Oct 2012 07:54:49 +0000 Subject: [PATCH] Evas: Add missing UNUSED for function parameter, and remove an UNUSED for a parameter that was actually used. Signed-off-by: Christopher Michael SVN revision: 78572 --- legacy/evas/src/lib/canvas/evas_object_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_image.c b/legacy/evas/src/lib/canvas/evas_object_image.c index 932f11a063..9bab207f20 100644 --- a/legacy/evas/src/lib/canvas/evas_object_image.c +++ b/legacy/evas/src/lib/canvas/evas_object_image.c @@ -594,7 +594,7 @@ evas_object_image_source_events_get(const Evas_Object *eo_obj) } static void -_image_source_events_get(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list) +_image_source_events_get(Eo *eo_obj, void *_pd EINA_UNUSED, va_list *list) { Evas_Object_Protected_Data *obj = eo_data_get(eo_obj, EVAS_OBJ_CLASS); Eina_Bool *source_events = va_arg(*list, Eina_Bool *);