diff options
-rw-r--r-- | src/floatfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 614506e7c4f..11cf657f105 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -829,7 +829,7 @@ static double rint (d) double d; { - return floor(d + 0.5); + return floor (d + 0.5); } #endif |