jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2bad31bdc420b619f3ae02b41549444dea15e26e

commit 2bad31bdc420b619f3ae02b41549444dea15e26e
Author: YeongJong Lee <[email protected]>
Date:   Wed Jan 17 12:51:31 2018 +0900

    efl_animation: fix typo
    
    Test Plan: make
    
    Reviewers: Jaehyun_Cho
    
    Subscribers: cedric, jpeg
    
    Differential Revision: https://phab.enlightenment.org/D5746
---
 src/lib/evas/canvas/efl_animation_player.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/evas/canvas/efl_animation_player.c 
b/src/lib/evas/canvas/efl_animation_player.c
index 8b31524f34..8baf84d7a5 100644
--- a/src/lib/evas/canvas/efl_animation_player.c
+++ b/src/lib/evas/canvas/efl_animation_player.c
@@ -94,9 +94,9 @@ _animator_cb(void *data)
         pd->progress += vector;
 
         if (pd->progress > 1.0)
-          pd->progress = 1,0;
+          pd->progress = 1.0;
         else if (pd->progress < 0.0)
-          pd->progress = 0,0;
+          pd->progress = 0.0;
      }
    else
      {

-- 


Reply via email to