Fix a harmless type error in 1.9.

This commit is contained in:
Bruce Evans 2008-01-25 21:09:21 +00:00
parent 02d23fdd74
commit fc84b771b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175665

View File

@ -73,7 +73,7 @@ __kernel_cos(double x, double y)
z = x*x;
r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
hz = (float)0.5*z;
hz = 0.5*z;
w = one-hz;
return w + (((one-w)-hz) + (z*r-x*y));
}