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:
parent
b356673d01
commit
ef104c3a33
|
@ -33,7 +33,7 @@ double rint(double x)
|
||||||
#ifndef HAVE_RINTF
|
#ifndef HAVE_RINTF
|
||||||
float rintf(float x)
|
float rintf(float x)
|
||||||
{
|
{
|
||||||
return rintf(x);
|
return rint(x);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue