diff --git a/src/timeloop/Timeloop.cpp b/src/timeloop/Timeloop.cpp
index 2fb1ed97f0d35f237acff31e6ac7cc06e9ed75e3..dea97c05787fb69adf29bcc84d51a4a9c03c9f9b 100644
--- a/src/timeloop/Timeloop.cpp
+++ b/src/timeloop/Timeloop.cpp
@@ -1,15 +1,15 @@
 //======================================================================================================================
 //
-//  This file is part of waLBerla. waLBerla is free software: you can 
+//  This file is part of waLBerla. waLBerla is free software: you can
 //  redistribute it and/or modify it under the terms of the GNU General Public
-//  License as published by the Free Software Foundation, either version 3 of 
+//  License as published by the Free Software Foundation, either version 3 of
 //  the License, or (at your option) any later version.
-//  
-//  waLBerla is distributed in the hope that it will be useful, but WITHOUT 
-//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
-//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License 
+//
+//  waLBerla is distributed in the hope that it will be useful, but WITHOUT
+//  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 //  for more details.
-//  
+//
 //  You should have received a copy of the GNU General Public License along
 //  with waLBerla (see COPYING.txt). If not, see <http://www.gnu.org/licenses/>.
 //
@@ -208,9 +208,9 @@ void Timeloop::executeSelectable( const selectable::SetSelectableObject<VoidFctN
    WALBERLA_LOG_PROGRESS("Running " << what << " \"" << objectName << "\"" );
 
    timing[objectName].start();
-   LIKWID_MARKER_START( objectName.c_str() )
+   LIKWID_MARKER_START( objectName.c_str() );
    (*exe)();
-   LIKWID_MARKER_STOP( objectName.c_str() )
+   LIKWID_MARKER_STOP( objectName.c_str() );
    timing[objectName].end();
 }