stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e2fa3acb4006a6968e2b2a5ebc16517296435b55
commit e2fa3acb4006a6968e2b2a5ebc16517296435b55 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Fri Jul 14 12:46:33 2017 +0200 tests: elm_popup: mark unused parameter as such to avoid warning --- src/bin/elementary/test_popup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/elementary/test_popup.c b/src/bin/elementary/test_popup.c index bfd17adefe..173b1bf555 100644 --- a/src/bin/elementary/test_popup.c +++ b/src/bin/elementary/test_popup.c @@ -624,7 +624,7 @@ gl_popup_text_get(void *data, Evas_Object *obj EINA_UNUSED, const char *part EIN } static void -_delete_btn_clicked(void *data, Evas_Object *obj, void *event_info EINA_UNUSED) +_delete_btn_clicked(void *data, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED) { elm_object_content_set(data, NULL); } --