From: Martin Quinson Date: Sat, 30 Jan 2016 22:08:09 +0000 (+0100) Subject: Make it compile on 32bits, to please @degomme X-Git-Tag: v3_13~1037 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b4e100c635317aa78edddfe6ae8f8c0feb69b2a4?ds=sidebyside Make it compile on 32bits, to please @degomme --- diff --git a/src/simdag/sd_global.cpp b/src/simdag/sd_global.cpp index 053a0fc0fe..eeb898cad0 100644 --- a/src/simdag/sd_global.cpp +++ b/src/simdag/sd_global.cpp @@ -273,7 +273,7 @@ xbt_dynar_t SD_simulate(double how_long) { if (!sd_global->watch_point_reached && how_long<0){ if (!xbt_dynar_is_empty(sd_global->initial_task_set)) { - XBT_WARN("Simulation is finished but %zu tasks are still not done", + XBT_WARN("Simulation is finished but %lu tasks are still not done", xbt_dynar_length(sd_global->initial_task_set)); static const char* state_names[] = { "SD_NOT_SCHEDULED", "SD_SCHEDULABLE", "SD_SCHEDULED", "SD_RUNNABLE", "SD_RUNNING", "SD_DONE","SD_FAILED" };