summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitesh Singh <amitesh.sh@samsung.com>2017-07-07 15:52:51 +0900
committerAmitesh Singh <amitesh.sh@samsung.com>2017-07-07 15:53:54 +0900
commita014aa36d8944e76c7533127a088a1a4c1310c2d (patch)
tree4fbe9c7f9eb34de9f0976547a8257963c8f6248b
parentf8d8136b2ce997f6f23c54b6d27b66504a91faf4 (diff)
downloadefl-a014aa36d8944e76c7533127a088a1a4c1310c2d.tar.gz
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
-rw-r--r--src/bin/elementary/test_photocam.c1
1 files changed, 1 insertions, 0 deletions
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;