diff --git a/src/scheme/AcousticSolver.hpp b/src/scheme/AcousticSolver.hpp
index 6f1b9256a157d43d8e7e62c60820b1f9888ac702..b00571b597ffb9401bcd4098f846492c2c65571c 100644
--- a/src/scheme/AcousticSolver.hpp
+++ b/src/scheme/AcousticSolver.hpp
@@ -86,7 +86,7 @@ class AcousticSolver
                   const NodeValuePerCell<double>& ljr,
                   const NodeValuePerCell<Rd>& njr)
   {
-    Kokkos::parallel_for("new nested Ajr", m_mesh.numberOfCells(), KOKKOS_LAMBDA(const int& j) {
+    Kokkos::parallel_for(m_mesh.numberOfCells(), KOKKOS_LAMBDA(const int& j) {
         const size_t& nb_nodes =m_Ajr.numberOfSubValues(j);
         const double& rho_c = rhocj(j);
         for (size_t r=0; r<nb_nodes; ++r) {