raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=dd7821e322fb3e726309ea729f6d225411953d5a
commit dd7821e322fb3e726309ea729f6d225411953d5a Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Fri Nov 8 18:12:55 2013 +0900 fix warning --- src/bin/test_dnd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/test_dnd.c b/src/bin/test_dnd.c index 5ad6076..d8ca772 100644 --- a/src/bin/test_dnd.c +++ b/src/bin/test_dnd.c @@ -919,7 +919,7 @@ static Eina_Bool _drop_box_button_new_cb(void *data, Evas_Object *obj, Elm_Selec return EINA_TRUE; } -void _enter_but_cb(void *data, Evas_Object *obj) +void _enter_but_cb(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED) { printf("Entered %s - drop it here and I will never print this line anymore.\n", __FUNCTION__); } @@ -941,7 +941,7 @@ static Eina_Bool _drop_but_icon_change_cb(void *data, Evas_Object *obj, Elm_Sele } /* Callback used to test multi-callbacks feature */ -static Eina_Bool _drop_but_cb_remove_cb(void *data, Evas_Object *obj, Elm_Selection_Data *ev) +static Eina_Bool _drop_but_cb_remove_cb(void *data EINA_UNUSED, Evas_Object *obj, Elm_Selection_Data *ev EINA_UNUSED) { printf("Second callback called - removing it\n"); elm_drop_target_del(obj, ELM_SEL_FORMAT_TARGETS, _enter_but_cb, NULL, NULL, NULL, NULL, NULL, _drop_but_cb_remove_cb, NULL); --