Skip to content

Commit

Permalink
Silencing -Wmaybe-uninitialized error
Browse files Browse the repository at this point in the history
  • Loading branch information
czurnieden committed Mar 7, 2023
1 parent c5cf790 commit e3b6178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mp_prime_extra_strong_lucas.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ mp_err mp_prime_extra_strong_lucas(const mp_int *N, bool *result)
{
mp_int Dz, s, Vk, Vk1, tmp1, Nm2;
uint32_t D, P;
int32_t j, r, nbits;
int32_t j = 0, r, nbits;
int i;
mp_err err = MP_OKAY;

Expand Down

0 comments on commit e3b6178

Please sign in to comment.