summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_prime_fermat.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_prime_fermat.c')
-rw-r--r--libtommath/bn_mp_prime_fermat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtommath/bn_mp_prime_fermat.c b/libtommath/bn_mp_prime_fermat.c
index 9c15435..e71e0ae 100644
--- a/libtommath/bn_mp_prime_fermat.c
+++ b/libtommath/bn_mp_prime_fermat.c
@@ -32,7 +32,7 @@ int mp_prime_fermat(const mp_int *a, const mp_int *b, int *result)
*result = MP_NO;
/* ensure b > 1 */
- if (mp_cmp_d(b, 1) != MP_GT) {
+ if (mp_cmp_d(b, 1uL) != MP_GT) {
return MP_VAL;
}