From: Martin Quinson Date: Mon, 29 Jan 2018 09:49:04 +0000 (+0100) Subject: fix formatting issues (%u for unsigned) X-Git-Tag: v3.19~292 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c4df442a7767bdb51ac7cbeb3ee5909a489bf623 fix formatting issues (%u for unsigned) --- diff --git a/src/surf/network_ns3.cpp b/src/surf/network_ns3.cpp index f8a827ea07..806c707e3b 100644 --- a/src/surf/network_ns3.cpp +++ b/src/surf/network_ns3.cpp @@ -233,7 +233,7 @@ void NetworkNS3Model::updateActionsState(double now, double delta) XBT_DEBUG("Destroy socket %p of action %p", ns3Socket.c_str(), action); action->finish(Action::State::done); } else { - XBT_DEBUG("Socket %p sent %d bytes out of %d (%d remaining)", ns3Socket.c_str(), sgFlow->sentBytes_, + XBT_DEBUG("Socket %p sent %u bytes out of %u (%u remaining)", ns3Socket.c_str(), sgFlow->sentBytes_, sgFlow->totalBytes_, sgFlow->remaining_); } }