Skip to content

Commit e3b6178

Browse files
committed
Silencing -Wmaybe-uninitialized error
1 parent c5cf790 commit e3b6178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mp_prime_extra_strong_lucas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mp_err mp_prime_extra_strong_lucas(const mp_int *N, bool *result)
3636
{
3737
mp_int Dz, s, Vk, Vk1, tmp1, Nm2;
3838
uint32_t D, P;
39-
int32_t j, r, nbits;
39+
int32_t j = 0, r, nbits;
4040
int i;
4141
mp_err err = MP_OKAY;
4242

0 commit comments

Comments
 (0)