X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6..22de1606d048d8ad200f93643bc80434644acea7:/src/s4u/s4u_ConditionVariable.cpp diff --git a/src/s4u/s4u_ConditionVariable.cpp b/src/s4u/s4u_ConditionVariable.cpp index d55e0eb5a9..d1ffcb2562 100644 --- a/src/s4u/s4u_ConditionVariable.cpp +++ b/src/s4u/s4u_ConditionVariable.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2021. 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. */ @@ -20,7 +20,7 @@ ConditionVariablePtr ConditionVariable::create() { kernel::activity::ConditionVariableImpl* cond = kernel::actor::simcall([] { return new kernel::activity::ConditionVariableImpl(); }); - return ConditionVariablePtr(&cond->cond_, false); + return ConditionVariablePtr(cond->get_iface(), false); } /**