Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: rename 2 fields
[simgrid.git] / src / simix / libsmx.cpp
index 5b479f9..298aaf4 100644 (file)
@@ -117,7 +117,7 @@ void simcall_execution_cancel(smx_activity_t execution)
 {
   simgrid::kernel::activity::ExecImplPtr exec =
       boost::static_pointer_cast<simgrid::kernel::activity::ExecImpl>(execution);
-  if (exec->surfAction_ == nullptr) // FIXME: One test fails if I remove this, but I don't get why...
+  if (exec->surf_action_ == nullptr) // FIXME: One test fails if I remove this, but I don't get why...
     return;
   simgrid::simix::kernelImmediate([exec] {
     exec->cancel();