summaryrefslogtreecommitdiff
path: root/mpz/cmp_d.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
committerTorbjorn Granlund <tege@gmplib.org>2010-11-22 22:26:05 +0100
commit198a1add0f2d556eb75bf2d85c7fceb9fafe9f51 (patch)
treec4fa3b97e983d3f057c0ba032faf39fe303d8f3b /mpz/cmp_d.c
parentd7afa9ea9c7dae166cb6719c3b11db9c96cca519 (diff)
downloadgmp-198a1add0f2d556eb75bf2d85c7fceb9fafe9f51.tar.gz
Whitespace cleanup.
Diffstat (limited to 'mpz/cmp_d.c')
-rw-r--r--mpz/cmp_d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpz/cmp_d.c b/mpz/cmp_d.c
index fd635a68e..a9a3a9623 100644
--- a/mpz/cmp_d.c
+++ b/mpz/cmp_d.c
@@ -71,13 +71,13 @@ mpz_cmp_d (mpz_srcptr z, double d)
if (zsize >= 0)
{
if (d < 0.0)
- return 1; /* >=0 cmp <0 */
+ return 1; /* >=0 cmp <0 */
ret = 1;
}
else
{
if (d >= 0.0)
- return -1; /* <0 cmp >=0 */
+ return -1; /* <0 cmp >=0 */
ret = -1;
d = -d;
zsize = -zsize;