diff options
author | Cedric Bail <cedric.bail@samsung.com> | 2013-04-11 12:00:21 +0900 |
---|---|---|
committer | Cedric Bail <cedric.bail@samsung.com> | 2013-04-11 18:07:09 +0900 |
commit | bf07af3e7b8f29ea2781a35b9bf10aae0f30ee7f (patch) | |
tree | 0f40dd825691cd4495bb9323c5d75fde828a4900 | |
parent | 2d9ec2159c6a2fa5e214a07a3d4de623b54fa1c3 (diff) | |
download | efl-bf07af3e7b8f29ea2781a35b9bf10aae0f30ee7f.tar.gz |
evas: remove useless initialization.
-rw-r--r-- | src/lib/evas/canvas/evas_object_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_object_main.c b/src/lib/evas/canvas/evas_object_main.c index a692837abc..fc2557b8e1 100644 --- a/src/lib/evas/canvas/evas_object_main.c +++ b/src/lib/evas/canvas/evas_object_main.c @@ -674,7 +674,7 @@ _position_set(Eo *eo_obj, void *_pd, va_list *list) Eina_Bool is, was = EINA_FALSE; Eina_Bool pass = EINA_FALSE, freeze = EINA_FALSE; Eina_Bool source_invisible = EINA_FALSE; - int nx = 0, ny = 0; + int nx, ny; if (obj->delete_me) return; if (!obj->layer) return; |