summaryrefslogtreecommitdiff
path: root/minmax.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 17:03:17 +0000
commitd8782b82c961338b15ef888f0bc152566644a964 (patch)
tree6972f3706c8251eb2b814fb636519519b73bb1f5 /minmax.c
parentbab5aab404897a12fe1c87734ebf2aa270b9b73b (diff)
downloadmpfr-d8782b82c961338b15ef888f0bc152566644a964.tar.gz
Removed trailing spaces (better for future patches, as such spaces
are sometimes stripped). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3726 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'minmax.c')
-rw-r--r--minmax.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/minmax.c b/minmax.c
index dc440eeab..31ff22472 100644
--- a/minmax.c
+++ b/minmax.c
@@ -1,4 +1,4 @@
-/* mpfr_min -- min and max of x, y
+/* mpfr_min -- min and max of x, y
Copyright 2001, 2003, 2004 Free Software Foundation, Inc.
@@ -34,8 +34,8 @@ mpfr_min (mpfr_ptr z, mpfr_srcptr x, mpfr_srcptr y, mp_rnd_t rnd_mode)
if (MPFR_ARE_SINGULAR(x,y))
{
if (MPFR_IS_NAN(x) && MPFR_IS_NAN(y) )
- {
- MPFR_SET_NAN(z);
+ {
+ MPFR_SET_NAN(z);
MPFR_RET_NAN;
}
else if (MPFR_IS_NAN(x))
@@ -67,8 +67,8 @@ mpfr_max (mpfr_ptr z, mpfr_srcptr x, mpfr_srcptr y, mp_rnd_t rnd_mode)
{
if (MPFR_ARE_SINGULAR(x,y))
{
- if (MPFR_IS_NAN(x) && MPFR_IS_NAN(y) )
- {
+ if (MPFR_IS_NAN(x) && MPFR_IS_NAN(y) )
+ {
MPFR_SET_NAN(z);
MPFR_RET_NAN;
}