jpeg pushed a commit to branch master.

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

commit f2783b4332d501fc4eece5c6d1906f4295e3d559
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Thu Jun 8 11:18:11 2017 +0900

    elput: Fix compilation warning (GCC)
    
    Use GCC sematic {} instead of {0} as the array members are structs,
    thus {0} isn't valid either.
---
 src/lib/elput/elput_evdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c
index a8b4903e02..0a5c018dc6 100644
--- a/src/lib/elput/elput_evdev.c
+++ b/src/lib/elput/elput_evdev.c
@@ -1416,7 +1416,7 @@ _tablet_tool_axis(struct libinput_device *idev, struct 
libinput_event_tablet_too
    struct libinput_tablet_tool *tool;
    Elput_Device *dev = libinput_device_get_user_data(idev);
    Ecore_Event_Axis_Update *ev;
-   Ecore_Axis ax[8] = {0}, *axis = NULL;
+   Ecore_Axis ax[8] = {}, *axis = NULL;
    int i, num = 0;
 
    ptr = _evdev_pointer_get(dev->seat);

-- 


Reply via email to