efl_ui_win: fix warning about unused parameter
authorStefan Schmidt <stefan@osg.samsung.com>
Fri, 2 Dec 2016 14:54:16 +0000 (15:54 +0100)
committerStefan Schmidt <stefan@osg.samsung.com>
Fri, 2 Dec 2016 15:28:31 +0000 (16:28 +0100)
If the ifdef is not hit this is never being used.

src/lib/elementary/efl_ui_win.c

index 316c7c5..fdcfd26 100644 (file)
@@ -1393,6 +1393,7 @@ _elm_win_opaque_update(Efl_Ui_Win_Data *sd, Eina_Bool force_alpha)
    ecore_wl2_window_input_region_set(sd->wl.win, ox, oy, ow, oh);
 #else
    (void)sd;
+   (void)force_alpha;
 #endif
 }