summaryrefslogtreecommitdiff
path: root/mpq/clear.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2014-01-19 13:25:03 +0100
committerTorbjorn Granlund <tege@gmplib.org>2014-01-19 13:25:03 +0100
commit5c972901ec4cca2668d9b294077540200f403e69 (patch)
treef41afbe38095935c886ba0a401b45c7d35cb8e44 /mpq/clear.c
parentbead3dcb5969491d6aee692ac7bc8d30b2e27521 (diff)
downloadgmp-5c972901ec4cca2668d9b294077540200f403e69.tar.gz
Get rid of BYTES_PER_MP_LIMB, most files affected.
Diffstat (limited to 'mpq/clear.c')
-rw-r--r--mpq/clear.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpq/clear.c b/mpq/clear.c
index 1587ff143..25144f742 100644
--- a/mpq/clear.c
+++ b/mpq/clear.c
@@ -24,7 +24,7 @@ void
mpq_clear (MP_RAT *m)
{
(*__gmp_free_func) (PTR(NUM(m)),
- (size_t) ALLOC(NUM(m)) * BYTES_PER_MP_LIMB);
+ (size_t) ALLOC(NUM(m)) * GMP_LIMB_BYTES);
(*__gmp_free_func) (PTR(DEN(m)),
- (size_t) ALLOC(DEN(m)) * BYTES_PER_MP_LIMB);
+ (size_t) ALLOC(DEN(m)) * GMP_LIMB_BYTES);
}