summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_and.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_and.c')
-rw-r--r--libtommath/bn_mp_and.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_and.c b/libtommath/bn_mp_and.c
index 10fe28b..c259f8d 100644
--- a/libtommath/bn_mp_and.c
+++ b/libtommath/bn_mp_and.c
@@ -6,7 +6,7 @@
/* two complement and */
mp_err mp_and(const mp_int *a, const mp_int *b, mp_int *c)
{
- int used = MAX(a->used, b->used) + 1, i;
+ int used = MP_MAX(a->used, b->used) + 1, i;
mp_err err;
mp_digit ac = 1, bc = 1, cc = 1;
mp_sign csign = ((a->sign == MP_NEG) && (b->sign == MP_NEG)) ? MP_NEG : MP_ZPOS;