summaryrefslogtreecommitdiff
path: root/tests/tstrtofr.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2012-08-29 13:45:18 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2012-08-29 13:45:18 +0000
commit666d752e5ff71e3eb66e224de4823a4182f6557f (patch)
treec847a1b9fa023d245be758cd0cb883284def9539 /tests/tstrtofr.c
parent6f980ba2ba923e0d47f284289491920c574f8319 (diff)
downloadmpfr-666d752e5ff71e3eb66e224de4823a4182f6557f.tar.gz
[tests/tstrtofr.c] Fixed small type error.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8397 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tstrtofr.c')
-rw-r--r--tests/tstrtofr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tstrtofr.c b/tests/tstrtofr.c
index cf7383cb5..673105e53 100644
--- a/tests/tstrtofr.c
+++ b/tests/tstrtofr.c
@@ -1146,7 +1146,7 @@ bug20120829 (void)
char s[48] = "1e-1";
mpfr_init2 (e, 128);
- mpfr_inits2 (4, x1, x2, (mpfr_ptr *) 0);
+ mpfr_inits2 (4, x1, x2, (mpfr_ptr) 0);
inex1 = mpfr_set_si (e, -1, MPFR_RNDN);
MPFR_ASSERTN (inex1 == 0);
@@ -1185,7 +1185,7 @@ bug20120829 (void)
}
}
- mpfr_clears (e, x1, x2, (mpfr_ptr *) 0);
+ mpfr_clears (e, x1, x2, (mpfr_ptr) 0);
}
int