Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not use unsigned there, -1 is used to indicate there is no route between hosts
[simgrid.git] / src / kernel / routing / FullZone.cpp
index dcbf949906765b0621cdf05b019e2c98614ab5c9..6ec3408a1efedfeabe4668ff74ea491efebfbce8 100644 (file)
@@ -43,7 +43,7 @@ void FullZone::do_seal()
 
 void FullZone::get_local_route(const NetPoint* src, const NetPoint* dst, Route* res, double* lat)
 {
-  XBT_DEBUG("full getLocalRoute from %s[%u] to %s[%u]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
+  XBT_DEBUG("full getLocalRoute from %s[%lu] to %s[%lu]", src->get_cname(), src->id(), dst->get_cname(), dst->id());
 
   const auto& e_route = routing_table_[src->id()][dst->id()];