Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix build on 32bits
[simgrid.git] / examples / s4u / plugin-link-load / s4u-plugin-link-load.cpp
index ee20ed5..ef1addb 100644 (file)
@@ -23,7 +23,7 @@ static void receiver(const std::string& mailbox)
 static void run_transfer(simgrid::s4u::Host* src_host, simgrid::s4u::Host* dst_host, const std::string& mailbox,
                          uint64_t msg_size)
 {
-  XBT_INFO("Launching the transfer of %lu bytes", msg_size);
+  XBT_INFO("Launching the transfer of %zu bytes", msg_size);
   simgrid::s4u::Actor::create("sender", src_host, sender, mailbox, msg_size);
   simgrid::s4u::Actor::create("receiver", dst_host, receiver, mailbox);
 }