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

This commit is contained in:
José Fonseca
2008-06-02 20:16:49 +09:00
parent c1949e2bd3
commit acdf24e530

View File

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