From fa7bedb4babd44dfbbe38f6e77d43458d5d9e37e Mon Sep 17 00:00:00 2001 From: Marco Bodrato Date: Fri, 28 Oct 2022 16:28:36 +0200 Subject: mpz/nextprime.c (findnext): Use TMP_ALLOC_TYPE instead of TMP_SALLOC_TYPE --- mpz/nextprime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpz/nextprime.c b/mpz/nextprime.c index e137494cd..2fe26165a 100644 --- a/mpz/nextprime.c +++ b/mpz/nextprime.c @@ -204,7 +204,7 @@ findnext (mpz_ptr p, odds_in_composite_sieve = 5 * nbits; /* composite[2*i] stores if p+2*i is a known composite */ - composite = TMP_SALLOC_TYPE (odds_in_composite_sieve, char); + composite = TMP_ALLOC_TYPE (odds_in_composite_sieve, char); for (;;) { -- cgit v1.2.1