change win32 lrintf to match other archs

This commit is contained in:
Chris Danford
2007-01-05 01:26:53 +00:00
parent 3db2a307eb
commit 87505ec245
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
// MinGW provides us with this function already
#if !defined(__MINGW32__)
inline int lrintf( float f )
inline long int lrintf( float f )
{
int retval;