diff -r cee9f0ecac66 -r 748ba8818af8 src/miscallenous.cc --- a/src/miscallenous.cc Mon Jun 30 05:53:14 2014 +0300 +++ b/src/miscallenous.cc Thu Jul 03 21:08:32 2014 +0300 @@ -146,9 +146,9 @@ { repeat = false; - for (int x = 0; x < countof (primes); x++) + for (int x = 0; x < countof (g_primes); x++) { - int const prime = primes[x]; + int const prime = g_primes[x]; if (numer < prime && denom < prime) break;