Skip to content

Commit 614bfcc

Browse files
committed
Issue 24366: Indent code (thanks to li4ick for reporting).
1 parent 86c3a3b commit 614bfcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/pymath.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ round(double x)
7373
absx = fabs(x);
7474
y = floor(absx);
7575
if (absx - y >= 0.5)
76-
y += 1.0;
76+
y += 1.0;
7777
return copysign(y, x);
7878
}
7979
#endif /* HAVE_ROUND */

0 commit comments

Comments
 (0)