X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5310951700035057cb32577b5bbdda9d788b4352..999eaa79aebc68c1d9e812889d99349fb2adf296:/src/surf/instr_routing.c?ds=inline diff --git a/src/surf/instr_routing.c b/src/surf/instr_routing.c index 3e2c81c714..e4be277883 100644 --- a/src/surf/instr_routing.c +++ b/src/surf/instr_routing.c @@ -143,7 +143,7 @@ static int graph_extraction_filter_out (container_t c1, container_t c2) static void recursiveGraphExtraction (AS_t rc, container_t container, xbt_dict_t filter) { if (!TRACE_platform_topology()){ - XBT_DEBUG("Graph extracing disable by user."); + XBT_DEBUG("Graph extraction disabled by user."); return; } XBT_DEBUG ("Graph extraction for routing_component = %s", rc->name); @@ -159,7 +159,7 @@ static void recursiveGraphExtraction (AS_t rc, container_t container, xbt_dict_t } { - xbt_graph_t graph = xbt_graph_new_graph (0, NULL); + xbt_graph_t graph = xbt_graph_new_graph (0, NULL); xbt_dict_t nodes = xbt_dict_new_homogeneous(NULL); xbt_dict_t edges = xbt_dict_new_homogeneous(NULL); xbt_edge_t edge = NULL; @@ -175,7 +175,6 @@ static void recursiveGraphExtraction (AS_t rc, container_t container, xbt_dict_t xbt_dict_free (&edges); xbt_graph_free_graph(graph,xbt_free, xbt_free, NULL); } - } /*