aboutsummaryrefslogtreecommitdiff
path: root/src/regex/test_regex_iterate_api.c
diff options
context:
space:
mode:
authorMaximilian Szengel <gnunet@maxsz.de>2012-04-19 11:39:16 +0000
committerMaximilian Szengel <gnunet@maxsz.de>2012-04-19 11:39:16 +0000
commit93a5401e858e978aa2d7fc090fc1f6612c15dc3f (patch)
tree742bf947188398af64ef06eae70e6cb0b243b045 /src/regex/test_regex_iterate_api.c
parent4071d1862fdcd9389e990784d0ea1fb9c4651f0f (diff)
downloadgnunet-93a5401e858e978aa2d7fc090fc1f6612c15dc3f.tar.gz
gnunet-93a5401e858e978aa2d7fc090fc1f6612c15dc3f.zip
dfa minimization fix
Diffstat (limited to 'src/regex/test_regex_iterate_api.c')
-rw-r--r--src/regex/test_regex_iterate_api.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/regex/test_regex_iterate_api.c b/src/regex/test_regex_iterate_api.c
index 913e94f2b..39959641d 100644
--- a/src/regex/test_regex_iterate_api.c
+++ b/src/regex/test_regex_iterate_api.c
@@ -31,7 +31,13 @@ void key_iterator(void *cls, const GNUNET_HashCode *key, const char *proof,
31 int accepting, unsigned int num_edges, 31 int accepting, unsigned int num_edges,
32 const struct GNUNET_REGEX_Edge *edges) 32 const struct GNUNET_REGEX_Edge *edges)
33{ 33{
34 int i;
35
34 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iterating...\n"); 36 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Iterating...\n");
37 for (i=0; i<num_edges; i++)
38 {
39 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Edge %i: %s\n", i, edges[i].label);
40 }
35} 41}
36 42
37int 43int