From ef104c3a336661b72a7485adb3d98477e755f6c7 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Mon, 13 Nov 2017 14:16:48 -0700 Subject: [PATCH] libport: Fix typo in rintf. Spotted by Joris Huizer. Signed-off-by: Alex Henrie Signed-off-by: Alexandre Julliard --- libs/port/rint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/port/rint.c b/libs/port/rint.c index a99c00be434..2c0d22294c2 100644 --- a/libs/port/rint.c +++ b/libs/port/rint.c @@ -33,7 +33,7 @@ double rint(double x) #ifndef HAVE_RINTF float rintf(float x) { - return rintf(x); + return rint(x); } #endif -- 2.11.4.GIT