From: Yury Selivanov Date: Tue, 2 Jun 2015 22:53:46 +0000 (-0400) Subject: Issue 24366: Indent code (thanks to li4ick for reporting). X-Git-Tag: v3.4.4rc1~5^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=614bfcc953141cfdd38606f87a09d39f17367fa3;p=thirdparty%2FPython%2Fcpython.git Issue 24366: Indent code (thanks to li4ick for reporting). --- diff --git a/Python/pymath.c b/Python/pymath.c index 827a773a6a3e..6799d200caf6 100644 --- a/Python/pymath.c +++ b/Python/pymath.c @@ -73,7 +73,7 @@ round(double x) absx = fabs(x); y = floor(absx); if (absx - y >= 0.5) - y += 1.0; + y += 1.0; return copysign(y, x); } #endif /* HAVE_ROUND */