Remove extranneous printf

This commit is contained in:
David Adrian 2013-10-16 17:36:40 -04:00
parent 0e03d170e6
commit f30c8df9e5
1 changed files with 0 additions and 1 deletions

View File

@ -127,7 +127,6 @@ static uint64_t find_primroot(const cyclic_group_t *group)
{
// what luck, rand() returns a uint32_t!
uint32_t candidate = (uint32_t) aesrand_getword() & 0xFFFFFFFF;
printf("Candidate: %u\n", (unsigned) candidate);
while(check_coprime(candidate, group) != COPRIME) {
++candidate;
}