diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-02 18:53:46 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-02 18:53:46 -0400 |
commit | 00a199e4c1d43563077b56cb434cb35c1a8a6fed (patch) | |
tree | 80ee3a99e30eeed531b2563cb9920de567d497fc /Python/pymath.c | |
parent | 4d7a8e298cb5786fd08b044974c42856b2ddfa2d (diff) | |
download | cpython-00a199e4c1d43563077b56cb434cb35c1a8a6fed.tar.gz |
Issue 24366: Indent code (thanks to li4ick for reporting).
Diffstat (limited to 'Python/pymath.c')
-rw-r--r-- | Python/pymath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pymath.c b/Python/pymath.c index 827a773a6a..6799d200ca 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 */ |