diff --git a/src/main.c b/src/main.c index 79404e7..df26541 100644 --- a/src/main.c +++ b/src/main.c @@ -53,7 +53,7 @@ int main(void) { nextPrime: // Add 2 (skip even numbers since they're all divisible by 2) mpz_add_ui(num, num, 2); - } while(run); + } while(likely(run)); // Deinitialize the list deInitList(&primes);