From: Stéphane Castelli Date: Wed, 7 May 2014 14:17:50 +0000 (+0200) Subject: Fix warning introduced by previous commit X-Git-Tag: v3_11~93 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/1ac579fe2e17153efc268d508f760d7444089462?ds=sidebyside Fix warning introduced by previous commit --- diff --git a/src/surf/surf_routing_cluster_fat_tree.cpp b/src/surf/surf_routing_cluster_fat_tree.cpp index 99232af44f..1c541d5299 100644 --- a/src/surf/surf_routing_cluster_fat_tree.cpp +++ b/src/surf/surf_routing_cluster_fat_tree.cpp @@ -30,6 +30,7 @@ bool AsClusterFatTree::isInSubTree(FatTreeNode *root, FatTreeNode *node) { } return true; } + void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src, RoutingEdgePtr dst, sg_platf_route_cbarg_t into, @@ -39,7 +40,7 @@ void AsClusterFatTree::getRouteAndLatency(RoutingEdgePtr src, source = this->nodes.find(src->getId())->second; destination = this->nodes.find(dst->getId())->second; - int d, k; // as in d-mod-k + int d = 0, k = 0; // as in d-mod-k currentNode = source;