jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=eb10b6eb255a3fb130997343a884b2a705888461

commit eb10b6eb255a3fb130997343a884b2a705888461
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Thu Jan 18 16:20:21 2018 +0900

    win: Avoid a warning
    
    I still hate those types.
    warning: case value not in enumerated type 'Efl_Ui_Win_Type' [-Wswitch]
---
 src/lib/elementary/efl_ui_win.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c
index 1dceaf972d..42f78a1c1c 100644
--- a/src/lib/elementary/efl_ui_win.c
+++ b/src/lib/elementary/efl_ui_win.c
@@ -117,7 +117,7 @@ struct _Efl_Ui_Win_Data
    } win32;
 #endif
 
-   Efl_Ui_Win_Type                   type;
+   unsigned /* Efl_Ui_Win_Type */    type;
    Efl_Ui_Win_Keyboard_Mode          kbdmode;
    Efl_Ui_Win_Indicator_Mode         indimode;
    struct

-- 


Reply via email to