From: Arnaud Giersch Date: Thu, 9 Jul 2020 22:33:51 +0000 (+0200) Subject: Try to fix for 32bits systems. X-Git-Tag: v3.26~478 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/55c0b6df83c47a23ea1998563ebd71bbf10441ee Try to fix for 32bits systems. --- diff --git a/examples/s4u/replay-comm/s4u-replay-comm.cpp b/examples/s4u/replay-comm/s4u-replay-comm.cpp index 1983bf0f42..d22c13c6d7 100644 --- a/examples/s4u/replay-comm/s4u-replay-comm.cpp +++ b/examples/s4u/replay-comm/s4u-replay-comm.cpp @@ -7,6 +7,7 @@ #include "xbt/replay.hpp" #include "xbt/str.h" #include +#include #include XBT_LOG_NEW_DEFAULT_CATEGORY(replay_comm, "Messages specific for this msg example"); @@ -52,11 +53,11 @@ public: static void send(simgrid::xbt::ReplayAction& action) { - long size = static_cast(std::stod(action[3])); + uint64_t size = static_cast(std::stod(action[3])); std::string* payload = new std::string(action[3]); double clock = simgrid::s4u::Engine::get_clock(); simgrid::s4u::Mailbox* to = simgrid::s4u::Mailbox::by_name(simgrid::s4u::this_actor::get_name() + "_" + action[2]); - ACT_DEBUG("Entering Send: %s (size: %ld) -- Actor %s on mailbox %s", NAME.c_str(), size, + ACT_DEBUG("Entering Send: %s (size: %" PRIu64 ") -- Actor %s on mailbox %s", NAME.c_str(), size, simgrid::s4u::this_actor::get_cname(), to->get_cname()); to->put(payload, size); delete payload;