diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-08-18 17:03:17 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2005-08-18 17:03:17 +0000 |
commit | d8782b82c961338b15ef888f0bc152566644a964 (patch) | |
tree | 6972f3706c8251eb2b814fb636519519b73bb1f5 /tests/tcmp_ui.c | |
parent | bab5aab404897a12fe1c87734ebf2aa270b9b73b (diff) | |
download | mpfr-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 'tests/tcmp_ui.c')
-rw-r--r-- | tests/tcmp_ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tcmp_ui.c b/tests/tcmp_ui.c index 609c51fcb..fd645de8c 100644 --- a/tests/tcmp_ui.c +++ b/tests/tcmp_ui.c @@ -27,8 +27,8 @@ MA 02110-1301, USA. */ int main (void) { - mpfr_t x; - unsigned long i; + mpfr_t x; + unsigned long i; long s; int c; @@ -154,14 +154,14 @@ main (void) mpfr_set_nan (x); mpfr_clear_erangeflag (); c = mpfr_cmp_ui (x, 12); - if (c != 0 || !mpfr_erangeflag_p () ) + if (c != 0 || !mpfr_erangeflag_p () ) { printf ("NAN error (1)\n"); exit (1); } mpfr_clear_erangeflag (); c = mpfr_cmp_si (x, -12); - if (c != 0 || !mpfr_erangeflag_p () ) + if (c != 0 || !mpfr_erangeflag_p () ) { printf ("NAN error (2)\n"); exit (1); |