Evas: Add missing UNUSED for function parameter, and remove an UNUSED

for a parameter that was actually used.

Signed-off-by: Christopher Michael <devilhorns@revolution.(none)>

SVN revision: 78572
This commit is contained in:
Christopher Michael 2012-10-28 07:54:49 +00:00
parent 9ea0fede15
commit 7ac7ffac4d
1 changed files with 1 additions and 1 deletions

View File

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