X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/22cae46149e1fb4988ad9e46060c3e7ecd4e0e44..5eeb3c843b60e9ba5e1a952ffe83df2a4d8f5fa0:/src/mc/mc_xbt.cpp diff --git a/src/mc/mc_xbt.cpp b/src/mc/mc_xbt.cpp index 257ebb47f6..a362e27885 100644 --- a/src/mc/mc_xbt.cpp +++ b/src/mc/mc_xbt.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2015. The SimGrid Team. +/* Copyright (c) 2014-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -22,7 +22,7 @@ void read_element(AddressSpace const& as, s_xbt_dynar_t d; as.read_bytes(&d, sizeof(d), addr); if (i >= d.used) - xbt_die("Out of bound index %zi/%lu", i, d.used); + xbt_die("Out of bound index %zu/%lu", i, d.used); if (len != d.elmsize) xbt_die("Bad size in simgrid::mc::read_element"); as.read_bytes(local, len, remote(xbt_dynar_get_ptr(&d, i)));