Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace memset(..., 0, ...) with zero-initialization.
[simgrid.git] / src / mc / mc_record.cpp
index 67e8883..6f1d32f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2014-2023. 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. */
@@ -29,7 +29,7 @@ void RecordTrace::replay() const
   if (xbt_log_no_loc)
     XBT_INFO("The backtrace of each transition will not be shown because of --log=no_loc");
   else
-    simgrid_mc_replay_show_backtraces = 1;
+    simgrid_mc_replay_show_backtraces = true;
 
   for (const simgrid::mc::Transition* transition : transitions_) {
     kernel::actor::ActorImpl* actor = engine->get_actor_by_pid(transition->aid_);