From 5b2ffa67d0e82b06951b2619815db43bacfdb1f3 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 27 May 2014 10:05:01 +0200 Subject: [PATCH] fix error message --- src/surf/surf_routing_cluster_fat_tree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- 2.20.1