libport: Fix typo in rintf.

Spotted by Joris Huizer.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Alex Henrie 2017-11-13 14:16:48 -07:00 committed by Alexandre Julliard
parent b356673d01
commit ef104c3a33
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ double rint(double x)
#ifndef HAVE_RINTF
float rintf(float x)
{
return rintf(x);
return rint(x);
}
#endif