diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc
index aae5010589532737883f3a4af196fdd04db8380f..f80e6404542906e0450b2ae1ae69ae187ba08808 100644
--- a/src/one-body-sample.cc
+++ b/src/one-body-sample.cc
@@ -427,8 +427,7 @@ int main(int argc, char *argv[]) {
           multigridStep,
           parset.get<size_t>("solver.tnnmg.maxiterations"), // FIXME
           1e-12,                                            // FIXME
-          &MNorm,                                           // FIXME
-          verbosity, false);                                // absolute error
+          &MNorm, verbosity, false);                        // absolute error
 
       initialAccelerationProblemSolver.preprocess();
       initialAccelerationProblemSolver.solve();
@@ -510,7 +509,7 @@ int main(int argc, char *argv[]) {
                                       SingletonVectorType const &_alpha) {
         myGlobalNonlinearity->updateState(_alpha);
 
-        // FIXME: Do we really need to pass u here?
+        // NIT: Do we really need to pass u here?
         typename NonlinearFactoryType::ConvexProblemType const myConvexProblem(
             1.0, problem_AM, *myGlobalNonlinearity, problem_rhs,
             _problem_iterate);