ecore/ecore_anim: Dead initial assignment. The value gets set two lines later in any case.

SVN revision: 72192
This commit is contained in:
Stefan Schmidt 2012-06-15 14:11:38 +00:00
parent 824f7172da
commit 17e3f9d47c
1 changed files with 1 additions and 1 deletions

View File

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