jpeg pushed a commit to branch master.

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

commit d61e243f0fc3a591c03243a898f9f83290697ff2
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Wed Apr 6 16:34:53 2016 +0900

    elm_glview: Fix warning with clang
    
    I'm using the same gcc construct to initiliaze a complex
    struct with {} instead of {0}.
---
 src/lib/elementary/elm_glview.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_glview.c b/src/lib/elementary/elm_glview.c
index 31d54f2..80eeea7 100644
--- a/src/lib/elementary/elm_glview.c
+++ b/src/lib/elementary/elm_glview.c
@@ -46,7 +46,7 @@ _elm_glview_elm_widget_on_focus(Eo *obj, Elm_Glview_Data *_pd 
EINA_UNUSED, Elm_O
 static void
 _glview_update_surface(Evas_Object *obj)
 {
-   Evas_Native_Surface ns = { 0 };
+   Evas_Native_Surface ns = {};
    Evas_GL_Options_Bits opt;
 
    ELM_GLVIEW_DATA_GET(obj, sd);

-- 


Reply via email to