From 06cbb5b48b3d99b7a908b5f03245762f47e85d01 Mon Sep 17 00:00:00 2001 From: stefan Date: Fri, 15 Jun 2012 14:11:38 +0000 Subject: [PATCH] ecore/ecore_anim: Dead initial assignment. The value gets set two lines later in any case. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@72192 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore/ecore_anim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore/ecore_anim.c b/src/lib/ecore/ecore_anim.c index 131929e..67bf8b1 100644 --- a/src/lib/ecore/ecore_anim.c +++ b/src/lib/ecore/ecore_anim.c @@ -216,7 +216,7 @@ _pos_map_accel_factor(double pos, double v1) { int i, fact = (int)v1; - double p, o1 = pos, o2 = pos, v; + double p, o1 = pos, o2, v; p = 1.0 - _pos_map_sin((M_PI / 2.0) + ((pos * M_PI) / 2.0)); o2 = p; for (i = 0; i < fact; i++) -- 2.7.4