ami pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a014aa36d8944e76c7533127a088a1a4c1310c2d
commit a014aa36d8944e76c7533127a088a1a4c1310c2d Author: Amitesh Singh <[email protected]> Date: Fri Jul 7 15:52:51 2017 +0900 elm test: img zoomable - fix compiler warnings efl/src/bin/elementary/test_photocam.c:779:19: note: initialize the variable '_zoom' to silence this warning --- src/bin/elementary/test_photocam.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/elementary/test_photocam.c b/src/bin/elementary/test_photocam.c index 9532b4778b..6a89bfa33c 100644 --- a/src/bin/elementary/test_photocam.c +++ b/src/bin/elementary/test_photocam.c @@ -788,6 +788,7 @@ _zoomable_mouse_wheel_cb(void *data, const Efl_Event *e) zoom *= 2; val = 1; + _zoom = zoom; while (_zoom>1) { _zoom /= 2; --
