From 154e3241ac5d8d27a293471012501f41152c2d62 Mon Sep 17 00:00:00 2001 From: degomme Date: Mon, 22 Feb 2016 14:36:56 +0100 Subject: [PATCH] Try to fix build on 32 bit platforms --- src/surf/surf_routing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/surf/surf_routing.cpp b/src/surf/surf_routing.cpp index ef1c70a51e..3028a23b2a 100644 --- a/src/surf/surf_routing.cpp +++ b/src/surf/surf_routing.cpp @@ -78,7 +78,7 @@ namespace surf { char *route_name = bprintf("%s#%s", src->name(), dst->name()); if (bypassRoutes_->find(route_name) != bypassRoutes_->end()) { bypassedRoute = bypassRoutes_->at(route_name); - XBT_DEBUG("Found a bypass route with %ld links",bypassedRoute->size()); + XBT_DEBUG("Found a bypass route with %zu links",bypassedRoute->size()); } free(route_name); return bypassedRoute; -- 2.20.1