summaryrefslogtreecommitdiff
path: root/mpfr-gmp.h
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-01-22 09:21:37 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2008-01-22 09:21:37 +0000
commitefdbd3708c7616534d7c89a256148301cb695ce5 (patch)
tree5983528478398049e07b69dc02d3e4e1395262dd /mpfr-gmp.h
parent75b4e2813488c8055610951adee2a393ba07e46e (diff)
downloadmpfr-efdbd3708c7616534d7c89a256148301cb695ce5.tar.gz
mpfr-gmp.h: small fix of a macro.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@5205 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-gmp.h')
-rw-r--r--mpfr-gmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpfr-gmp.h b/mpfr-gmp.h
index 4fc4a336d..56869050f 100644
--- a/mpfr-gmp.h
+++ b/mpfr-gmp.h
@@ -308,7 +308,7 @@ __MPFR_DECLSPEC void mpfr_tmp_free _MPFR_PROTO ((struct tmp_marker *));
#define TMP_ALLOC(n) (MPFR_LIKELY ((n) < 16384) ? \
alloca (n) : mpfr_tmp_allocate (&tmp_marker, (n)))
#define TMP_DECL(m) struct tmp_marker *tmp_marker
-#define TMP_MARK(m) tmp_marker = 0;
+#define TMP_MARK(m) (tmp_marker = 0)
#define TMP_FREE(m) mpfr_tmp_free (tmp_marker)
#if defined (__cplusplus)