From: Martin Quinson Date: Wed, 2 Nov 2011 00:16:09 +0000 (+0100) Subject: cosmetics X-Git-Tag: exp_20120216~531 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f334f26d7bfb173d10eb60630393eee1c0cff7c0 cosmetics --- diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index 9188a557c2..ad6e304372 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -419,22 +419,20 @@ static void parse_E_bypassRoute_store_route(void) * make the new structure and * set the parsing functions to allows parsing the part of the routing tree */ -void routing_AS_init(const char *AS_id, const char *AS_routing) +void routing_AS_init(const char *AS_id, const char *wanted_routing_type) { routing_component_t new_routing; model_type_t model = NULL; - const char *wanted = AS_routing; int cpt; /* search the routing model */ for (cpt = 0; routing_models[cpt].name; cpt++) - if (!strcmp(wanted, routing_models[cpt].name)) + if (!strcmp(wanted_routing_type, routing_models[cpt].name)) model = &routing_models[cpt]; /* if its not exist, error */ if (model == NULL) { fprintf(stderr, "Routing model %s not found. Existing models:\n", - wanted); + wanted_routing_type); for (cpt = 0; routing_models[cpt].name; cpt++) - if (!strcmp(wanted, routing_models[cpt].name)) fprintf(stderr, " %s: %s\n", routing_models[cpt].name, routing_models[cpt].desc); xbt_die(NULL);