X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..162424b0ac640baa56b0ca9bc158ef9743f0c4ac:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index af534aced6..3a9118aebb 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -37,7 +37,7 @@ public: hash_type hash(Snapshot const& snapshot) { - XBT_DEBUG("START hash %i", snapshot.num_state_); + XBT_DEBUG("START hash %ld", snapshot.num_state_); djb_hash hash; // TODO: // * nb_processes @@ -45,7 +45,7 @@ hash_type hash(Snapshot const& snapshot) // * root variables // * basic stack frame information // * stack frame local variables - XBT_DEBUG("END hash %i", snapshot.num_state_); + XBT_DEBUG("END hash %ld", snapshot.num_state_); return hash.value(); }