elm_web: Fixed build warning with ewebkit
authorRyuan Choi <ryuan.choi@gmail.com>
Tue, 22 Apr 2014 16:27:47 +0000 (01:27 +0900)
committerRyuan Choi <ryuan.choi@gmail.com>
Tue, 22 Apr 2014 16:27:47 +0000 (01:27 +0900)
src/lib/elm_web.c

index 14d315d..318d11e 100644 (file)
@@ -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