From: Augustin Degomme Date: Tue, 27 May 2014 08:05:01 +0000 (+0200) Subject: fix error message X-Git-Tag: v3_11~34^2~11 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5b2ffa67d0e82b06951b2619815db43bacfdb1f3?ds=sidebyside fix error message --- diff --git a/src/surf/surf_routing_cluster_fat_tree.cpp b/src/surf/surf_routing_cluster_fat_tree.cpp index f94b395f77..b2697d103d 100644 --- a/src/surf/surf_routing_cluster_fat_tree.cpp +++ b/src/surf/surf_routing_cluster_fat_tree.cpp @@ -59,7 +59,7 @@ void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src, source = tempIter->second; tempIter = this->computeNodes.find(dst->getId()); if (tempIter == this->computeNodes.end()) { - xbt_die("Could not find the destination %s [%d] in the fat tree", src->getName(), src->getId()); + xbt_die("Could not find the destination %s [%d] in the fat tree", dst->getName(), dst->getId()); }