From d057f66e346abf6f1755d5e83bc755099867bc4b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de>
Date: Fri, 21 Dec 2018 12:45:28 +0100
Subject: [PATCH] [poroelastic][cm] use correct domain prefix for function
 argument

---
 dumux/geomechanics/poroelastic/couplingmanager.hh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dumux/geomechanics/poroelastic/couplingmanager.hh b/dumux/geomechanics/poroelastic/couplingmanager.hh
index 1a40e6073e..ad3bef3d55 100644
--- a/dumux/geomechanics/poroelastic/couplingmanager.hh
+++ b/dumux/geomechanics/poroelastic/couplingmanager.hh
@@ -335,15 +335,15 @@ public:
     template< class PoroMechLocalAssembler >
     typename LocalResidual<PoroMechId>::ElementResidualVector
     evalCouplingResidual(Dune::index_constant<PoroMechId> poroMechDomainId,
-                         const PoroMechLocalAssembler& pmFlowLocalAssembler,
+                         const PoroMechLocalAssembler& poroMechLocalAssembler,
                          Dune::index_constant<PMFlowId> pmFlowDomainId,
                          GridIndexType<PMFlowId> dofIdxGlobalJ)
     {
-        return pmFlowLocalAssembler.localResidual().evalFluxAndSource(pmFlowLocalAssembler.element(),
-                                                                      pmFlowLocalAssembler.fvGeometry(),
-                                                                      pmFlowLocalAssembler.curElemVolVars(),
-                                                                      pmFlowLocalAssembler.elemFluxVarsCache(),
-                                                                      pmFlowLocalAssembler.elemBcTypes());
+        return poroMechLocalAssembler.localResidual().evalFluxAndSource(poroMechLocalAssembler.element(),
+                                                                        poroMechLocalAssembler.fvGeometry(),
+                                                                        poroMechLocalAssembler.curElemVolVars(),
+                                                                        poroMechLocalAssembler.elemFluxVarsCache(),
+                                                                        poroMechLocalAssembler.elemBcTypes());
     }
 
     //! Return a const reference to one of the problems
-- 
GitLab