summaryrefslogtreecommitdiff
path: root/strtofr.c
diff options
context:
space:
mode:
authorpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2004-11-17 16:22:14 +0000
committerpelissip <pelissip@280ebfd0-de03-0410-8827-d642c229c3f4>2004-11-17 16:22:14 +0000
commita5336c4f28b5ccdaccc0e3885efe796da1840e74 (patch)
tree34255983f13df34a51fb73e7543d9742d8d08ce3 /strtofr.c
parentd05f176dc02c66e2ce9c3378b2b04d7c9d4ba66a (diff)
downloadmpfr-a5336c4f28b5ccdaccc0e3885efe796da1840e74.tar.gz
Fix bug with TMP_MARK.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3091 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'strtofr.c')
-rw-r--r--strtofr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strtofr.c b/strtofr.c
index 471a47725..f99f1dca8 100644
--- a/strtofr.c
+++ b/strtofr.c
@@ -409,7 +409,7 @@ parsed_string_to_mpfr (mpfr_t x, struct parsed_string *pstr, mp_rnd_t rnd)
size_t pstr_size;
mp_size_t ysize, real_ysize;
int res, err;
- TMP_DECL (maker);
+ TMP_DECL (marker);
/* determine the minimal precision for the computation */
prec = MPFR_PREC (x) + MPFR_INT_CEIL_LOG2 (MPFR_PREC (x));
@@ -671,7 +671,7 @@ parsed_string_to_mpfr (mpfr_t x, struct parsed_string *pstr, mp_rnd_t rnd)
res = mpfr_set_overflow (x, rnd, (pstr->negative) ? -1 : 1);
end:
- TMP_FREE (maker);
+ TMP_FREE (marker);
return res;
}