From: Arnaud Giersch Date: Tue, 21 Feb 2012 15:50:01 +0000 (+0100) Subject: Don't pass NULL to xbt_die. X-Git-Tag: exp_20120308~34^2~3 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ec3be75f932849aab240103afd8fa782cff77b0e Don't pass NULL to xbt_die. --- diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index 3acd4b11d9..7ae78fcaee 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -328,7 +328,7 @@ void routing_AS_begin(const char *AS_id, const char *wanted_routing_type) for (cpt = 0; routing_models[cpt].name; cpt++) fprintf(stderr, " %s: %s\n", routing_models[cpt].name, routing_models[cpt].desc); - xbt_die(NULL); + xbt_die("dying"); } /* make a new routing component */