Skip to content
Snippets Groups Projects
Commit 4f3cda4e authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

NULL wasn't defined.

Rev: src/modules/Gmp/next_prime.c:1.4
parent 260f1c27
Branches
Tags
No related merge requests found
...@@ -138,7 +138,7 @@ void ...@@ -138,7 +138,7 @@ void
mpz_next_prime(mpz_t p, mpz_t n, int count, int prime_limit) mpz_next_prime(mpz_t p, mpz_t n, int count, int prime_limit)
{ {
mpz_t tmp; mpz_t tmp;
unsigned long *moduli = NULL; unsigned long *moduli = 0;
unsigned long difference; unsigned long difference;
int i; int i;
int composite; int composite;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment