diff options
-rw-r--r-- | src/regex/regex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regex/regex.c b/src/regex/regex.c index 290a54d2ea..511aa4141a 100644 --- a/src/regex/regex.c +++ b/src/regex/regex.c @@ -2505,7 +2505,7 @@ GNUNET_REGEX_construct_dfa (const char *regex, const size_t len, GNUNET_REGEX_context_init (&ctx); /* Create NFA */ - fprintf (stderr, "N"); + // fprintf (stderr, "N"); nfa = GNUNET_REGEX_construct_nfa (regex, len); if (NULL == nfa) @@ -2527,12 +2527,12 @@ GNUNET_REGEX_construct_dfa (const char *regex, const size_t len, dfa->start = dfa_state_create (&ctx, &nfa_start_eps_cls); automaton_add_state (dfa, dfa->start); - fprintf (stderr, "D"); + // fprintf (stderr, "D"); construct_dfa_states (&ctx, nfa, dfa, dfa->start); GNUNET_REGEX_automaton_destroy (nfa); /* Minimize DFA */ - fprintf (stderr, "M"); + // fprintf (stderr, "M"); dfa_minimize (&ctx, dfa); /* Create proofs and hashes for all states */ |