diff --git a/src/duneinterface/gitter_dune_pll_mgb.cc b/src/duneinterface/gitter_dune_pll_mgb.cc
index fdf80829a3ee1299a8b33ebaa9b28d3aa2087202..2c745bd7adda8a177fcf73489f72c43253d897aa 100644
--- a/src/duneinterface/gitter_dune_pll_mgb.cc
+++ b/src/duneinterface/gitter_dune_pll_mgb.cc
@@ -409,7 +409,7 @@ void DuneParallelGridMover :: initialize ()
         typedef Gitter :: ghostpair_STI ghostpair_STI;
         typedef Gitter :: Geometric :: hexa_GEO  hexa_GEO;
 
-        ghostpair_STI gpair ; //= (*i)->getGhost();
+        ghostpair_STI gpair = (*i)->getGhost();
         hexa_GEO * gh = dynamic_cast<hexa_GEO *> (gpair.first);
         if( gh )
         {
@@ -442,7 +442,7 @@ void DuneParallelGridMover :: initialize ()
       {
         // check for ghost element 
         typedef Gitter :: ghostpair_STI ghostpair_STI;
-        ghostpair_STI gpair ; //= (*i)->getGhost();
+        ghostpair_STI gpair = (*i)->getGhost();
 
         typedef Gitter :: Geometric :: tetra_GEO  tetra_GEO;
         tetra_GEO * gh = dynamic_cast<tetra_GEO *> (gpair.first);