summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ08nY2017-04-11 16:38:14 +0200
committerJ08nY2017-04-11 16:38:14 +0200
commit939d756822df6594daaa66c974a62a46759fabd7 (patch)
tree41f1fa5147992cc511e0be0de63b6d595a5b33c7
parent1ad9dd0c08e4eabfd4faa7a0a88b2e4b550a6f06 (diff)
downloadecgen-939d756822df6594daaa66c974a62a46759fabd7.tar.gz
ecgen-939d756822df6594daaa66c974a62a46759fabd7.tar.zst
ecgen-939d756822df6594daaa66c974a62a46759fabd7.zip
-rw-r--r--src/exhaustive/exhaustive.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/exhaustive/exhaustive.c b/src/exhaustive/exhaustive.c
index 2f7dda9..9202c7a 100644
--- a/src/exhaustive/exhaustive.c
+++ b/src/exhaustive/exhaustive.c
@@ -143,7 +143,6 @@ int exhaustive_gen_retry(curve_t *curve, const config_t *cfg,
int new_state = state + diff;
for (int i = state; i > new_state;) {
if (unrolls && unrolls[i]) {
- debug("Unroll from state %i to state %i\n", i, i - 1);
i += unrolls[i](curve, cfg, tops[i], tops[i - 1]);
} else {
--i;