summaryrefslogtreecommitdiff
path: root/mpz/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 /mpz/clear.c
parentbead3dcb5969491d6aee692ac7bc8d30b2e27521 (diff)
downloadgmp-5c972901ec4cca2668d9b294077540200f403e69.tar.gz
Get rid of BYTES_PER_MP_LIMB, most files affected.
Diffstat (limited to 'mpz/clear.c')
-rw-r--r--mpz/clear.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpz/clear.c b/mpz/clear.c
index d85775ebb..6a0caa546 100644
--- a/mpz/clear.c
+++ b/mpz/clear.c
@@ -25,5 +25,5 @@ along with the GNU MP Library. If not, see https://www.gnu.org/licenses/. */
void
mpz_clear (mpz_ptr m)
{
- (*__gmp_free_func) (PTR (m), (size_t) ALLOC (m) * BYTES_PER_MP_LIMB);
+ (*__gmp_free_func) (PTR (m), (size_t) ALLOC (m) * GMP_LIMB_BYTES);
}