jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6857f349b0b161260013e07cc612ae766ba4b61b
commit 6857f349b0b161260013e07cc612ae766ba4b61b Author: Jaehyun Cho <[email protected]> Date: Fri Oct 13 15:01:24 2017 +0900 efl_animation: Fix shadowing local variable warning --- src/lib/evas/canvas/efl_animation_object_group_parallel.c | 2 +- src/lib/evas/canvas/efl_animation_object_group_sequential.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/canvas/efl_animation_object_group_parallel.c b/src/lib/evas/canvas/efl_animation_object_group_parallel.c index 6c8a9aeac0..dd6043608f 100644 --- a/src/lib/evas/canvas/efl_animation_object_group_parallel.c +++ b/src/lib/evas/canvas/efl_animation_object_group_parallel.c @@ -217,7 +217,7 @@ _efl_animation_object_group_parallel_efl_animation_object_progress_set(Eo *eo_ob efl_animation_object_repeat_count_get(anim_obj); if (repeat_count > 0) { - int repeated_count = _repeated_count_get(pd, anim_obj); + repeated_count = _repeated_count_get(pd, anim_obj); if (repeated_count < repeat_count) { repeated_count++; diff --git a/src/lib/evas/canvas/efl_animation_object_group_sequential.c b/src/lib/evas/canvas/efl_animation_object_group_sequential.c index 1f4dd7d9dd..0f07a597f1 100644 --- a/src/lib/evas/canvas/efl_animation_object_group_sequential.c +++ b/src/lib/evas/canvas/efl_animation_object_group_sequential.c @@ -222,7 +222,7 @@ _efl_animation_object_group_sequential_efl_animation_object_progress_set(Eo *eo_ efl_animation_object_repeat_count_get(anim_obj); if (repeat_count > 0) { - int repeated_count = _repeated_count_get(pd, anim_obj); + repeated_count = _repeated_count_get(pd, anim_obj); if (repeated_count < repeat_count) { repeated_count++; --
