Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
second attempt at fixing 32bits. Am I stupid or something? v3.24
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 9 Oct 2019 17:24:35 +0000 (19:24 +0200)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 9 Oct 2019 17:24:35 +0000 (19:24 +0200)
src/plugins/host_energy.cpp

index 50b4dad..46c48c2 100644 (file)
@@ -407,8 +407,8 @@ void HostEnergy::init_watts_range_list()
   XBT_DEBUG("%s: power properties: %s", host_->get_cname(), all_power_values_str);
 
   xbt_assert(all_power_values.size() == (unsigned)host_->get_pstate_count(),
-             "Invalid XML file. Found %lu energetic profiles for %d pstates",
-             all_power_values.size(), host_->get_pstate_count());
+             "Invalid XML file. Found %zu energetic profiles for %d pstates", all_power_values.size(),
+             host_->get_pstate_count());
 
   int i = 0;
   for (auto const& current_power_values_str : all_power_values) {