diff options
Diffstat (limited to 'base/intmath.cc')
-rw-r--r-- | base/intmath.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/intmath.cc b/base/intmath.cc index b9a478ba0..2e220aa3b 100644 --- a/base/intmath.cc +++ b/base/intmath.cc @@ -47,7 +47,7 @@ PrevPrime(int n) else if (decr == 1) decr = 4; - for(;;) { + for (;;) { if (IsPrime(n)) return n; n -= decr; |