gallium: Fix log<->cos typo in logf.

This commit is contained in:
José Fonseca 2008-06-02 20:16:49 +09:00
parent 012c0dd632
commit 969a207fe3

View file

@ -452,7 +452,7 @@ static INLINE float fabsf( float f )
static INLINE float logf( float f )
{
return (float) cos( (double) f );
return (float) log( (double) f );
}
#endif /* _INC_MATH */
#endif