ryuan pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=e195428df0270cbeee43a682fd52dbe7d9babd78
commit e195428df0270cbeee43a682fd52dbe7d9babd78 Author: Ryuan Choi <ryuan.c...@gmail.com> Date: Wed Apr 23 01:27:47 2014 +0900 elm_web: Fixed build warning with ewebkit --- src/lib/elm_web.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_web.c b/src/lib/elm_web.c index 14d315d..318d11e 100644 --- a/src/lib/elm_web.c +++ b/src/lib/elm_web.c @@ -198,7 +198,8 @@ EOLIAN static Eina_Bool _elm_web_elm_widget_event(Eo *obj, Elm_Web_Data *sd, Evas_Object *src, Evas_Callback_Type type, void *event_info) { Evas_Event_Key_Down *ev = event_info; - (void) src; + (void)sd; + (void)src; #ifdef HAVE_ELEMENTARY_WEB if (type != EVAS_CALLBACK_KEY_DOWN) return EINA_FALSE; @@ -211,7 +212,6 @@ _elm_web_elm_widget_event(Eo *obj, Elm_Web_Data *sd, Evas_Object *src, Evas_Call return EINA_TRUE; #else (void)obj; - (void)sd; (void)type; (void)ev; #endif --