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>
This commit is contained in:
Alex Henrie 2017-11-13 14:16:48 -07:00 committed by Alexandre Julliard
parent b356673d01
commit ef104c3a33

View file

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