From: schnorr Date: Fri, 30 Jul 2010 11:56:07 +0000 (+0000) Subject: fix: association between router name and its id X-Git-Tag: v3_5~748 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e501e032d9d5ca23f99cb7dad9832b616fb0145c fix: association between router name and its id git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8073 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index aef6d31638..8ed16fc65b 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -100,8 +100,8 @@ static void routing_full_parse_Srouter(void) { *val = HOST2ROUTER(used_routing->router_count++); xbt_dict_set(used_routing->host_id,A_surfxml_router_id,val,xbt_free); #ifdef HAVE_TRACING - TRACE_surf_host_define_id (A_surfxml_host_id, *val); - TRACE_surf_host_declaration (A_surfxml_host_id, 0); + TRACE_surf_host_define_id (A_surfxml_router_id, *val); + TRACE_surf_host_declaration (A_surfxml_router_id, 0); #endif }