Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix formatting issues (%u for unsigned)
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 29 Jan 2018 09:49:04 +0000 (10:49 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 29 Jan 2018 09:49:04 +0000 (10:49 +0100)
src/surf/network_ns3.cpp

index f8a827e..806c707 100644 (file)
@@ -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_);
     }
   }