From c4df442a7767bdb51ac7cbeb3ee5909a489bf623 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Mon, 29 Jan 2018 10:49:04 +0100 Subject: [PATCH 1/1] fix formatting issues (%u for unsigned) --- src/surf/network_ns3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_); } } -- 2.20.1