efl_animation: Fix shadowing local variable warning

This commit is contained in:
Jaehyun Cho 2017-10-13 15:01:24 +09:00
parent 94d0967fad
commit 6857f349b0
2 changed files with 2 additions and 2 deletions

View File

@ -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++;

View File

@ -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++;