remove useless semicolon
This commit is contained in:
parent
330b980d49
commit
d3cbfd587d
@ -68,7 +68,7 @@ mp_err mp_prime_next_prime(mp_int *a, int t, int bbs_style)
|
|||||||
if ((a->dp[0] & 3u) != 3u) {
|
if ((a->dp[0] & 3u) != 3u) {
|
||||||
if ((err = mp_sub_d(a, (a->dp[0] & 3u) + 1u, a)) != MP_OKAY) {
|
if ((err = mp_sub_d(a, (a->dp[0] & 3u) + 1u, a)) != MP_OKAY) {
|
||||||
return err;
|
return err;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (MP_IS_EVEN(a)) {
|
if (MP_IS_EVEN(a)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user