Remove useless debug information

This commit is contained in:
2021-01-23 15:48:04 +01:00
parent 5025303e18
commit 1b43433420
3 changed files with 8 additions and 9 deletions

2
oper.c
View File

@@ -59,7 +59,7 @@ void gen_combinations(nops)
int len_ops=strlen(ops);
n_combs=n_combine(len_ops, nops);
printf("gen: n=%d\n", n_combs);
//printf("gen: n=%d\n", n_combs);
for (i=0; i<n_combs; ++i) {
combs[ncombs]=strdup(combine(ops, nops, i));
ncombs++;