X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d8ab922a070441ad80ad86b93b40bc7e1fd4a7d1..0ddad0a8665a95e6f16b6f765efca789459a818d:/src/xbt/graph.c diff --git a/src/xbt/graph.c b/src/xbt/graph.c index b81e0d409a..14ed08dc52 100644 --- a/src/xbt/graph.c +++ b/src/xbt/graph.c @@ -785,8 +785,7 @@ xbt_graph_t xbt_graph_load (const char *filename) xbt_node_t source = xbt_dict_get (nodes_dict, node_source); xbt_node_t target = xbt_dict_get (nodes_dict, node_target); - xbt_edge_t e; - e = xbt_graph_new_edge (ret, source, target, xbt_strdup(edge_id)); + xbt_graph_new_edge (ret, source, target, xbt_strdup(edge_id)); } xbt_dict_free (&nodes_dict); return ret;