1
0
Fork 0

If we run out of prime numbers, do not change value.

This commit is contained in:
Max Neunhoeffer 2014-03-24 14:07:31 +01:00
parent 523029e190
commit 5c63512bb5
1 changed files with 1 additions and 3 deletions

View File

@ -86,9 +86,7 @@ uint64_t TRI_NextPrime (uint64_t value) {
return Primes[i];
}
}
assert(false);
return 0;
return value;
}
// Local Variables: