diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-06-03 08:21:44 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2016-06-03 08:21:44 +0000 |
commit | f3c851e90db4b25bbbc5ff52b311345e703539f2 (patch) | |
tree | 8931494f38eb65268ac5657071fc523ae881c93a /tests/tfactorial.c | |
parent | 0ffe51757e6f17fd1ce54995663244cbf7e58e91 (diff) | |
download | mpfr-f3c851e90db4b25bbbc5ff52b311345e703539f2.tar.gz |
declare prec in unsigned long
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/faithful@10414 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tfactorial.c')
-rw-r--r-- | tests/tfactorial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tfactorial.c b/tests/tfactorial.c index d36d85b99..a116a1bf0 100644 --- a/tests/tfactorial.c +++ b/tests/tfactorial.c @@ -196,7 +196,7 @@ main (int argc, char *argv[]) int rnd; mpfr_t x, y, z, t; int inexact; - mpfr_prec_t prec, yprec; + unsigned long prec, yprec; tests_start_mpfr (); |