Skip to content

Commit 5e66cfc

Browse files
committed
remove useless cast
1 parent 67756d7 commit 5e66cfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bn_mp_reduce_is_2k.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ int mp_reduce_is_2k(const mp_int *a)
2424
return MP_NO;
2525
}
2626
iz <<= 1;
27-
if (iz > (mp_digit)MP_MASK) {
27+
if (iz > MP_MASK) {
2828
++iw;
2929
iz = 1;
3030
}

0 commit comments

Comments
 (0)