diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 7204f50084f5652a5926741da54246841f2d834d..512d5e76f8e5c7dd0f89202f88f629a4832979b8 100644
--- a/doc/CMakeLists.txt
+++ b/doc/CMakeLists.txt
@@ -16,7 +16,7 @@
 #     Univ. of Tennessee,
 #     King Abdullah Univesity of Science and Technology
 #     Univ. of California Berkeley,
-#     Univ. of Colorado Denver. 
+#     Univ. of Colorado Denver.
 #
 #  @version 0.9.0
 #  @author Cedric Castagnede
diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt
index f66dcdfcc1e6e729b7a6fb8e1008126da70e416c..0da86af368e14ca38bbaf5fb72585baeffc9f8ad 100644
--- a/doc/doxygen/CMakeLists.txt
+++ b/doc/doxygen/CMakeLists.txt
@@ -16,7 +16,7 @@
 #     Univ. of Tennessee,
 #     King Abdullah Univesity of Science and Technology
 #     Univ. of California Berkeley,
-#     Univ. of Colorado Denver. 
+#     Univ. of Colorado Denver.
 #
 #  @version 0.9.0
 #  @author Cedric Castagnede
diff --git a/timing/timing.c b/timing/timing.c
index 22015352bfca981f9bd2e81f72fd9713ef92316d..e928035c23f7bd9abe3a2999417930374db0eb28 100644
--- a/timing/timing.c
+++ b/timing/timing.c
@@ -674,17 +674,21 @@ main(int argc, char *argv[]) {
         MORSE_Set(MORSE_HOUSEHOLDER_SIZE, iparam[IPARAM_RHBLK]);
     }
 
-    if (iparam[IPARAM_PROFILE] == 1)
+    if (iparam[IPARAM_PROFILE] == 1) {
         MORSE_Enable(MORSE_PROFILING_MODE);
+    }
 
-    if (iparam[IPARAM_PROGRESS] == 1)
+    if (iparam[IPARAM_PROGRESS] == 1) {
         MORSE_Enable(MORSE_PROGRESS);
+    }
 
-    if (iparam[IPARAM_PRINT_WARNINGS] == 0)
+    if (iparam[IPARAM_PRINT_WARNINGS] == 0) {
         MORSE_Disable(MORSE_WARNINGS);
+    }
 
-    if (iparam[IPARAM_GEMM3M] == 1)
+    if (iparam[IPARAM_GEMM3M] == 1) {
         MORSE_Enable(MORSE_GEMM3M);
+    }
 
 #if defined(CHAMELEON_USE_MPI)
     nbnode = MORSE_Comm_size();
@@ -702,8 +706,9 @@ main(int argc, char *argv[]) {
     /* Layout conversion */
     MORSE_Set(MORSE_TRANSLATION_MODE, iparam[IPARAM_INPLACE]);
 
-    if ( MORSE_My_Mpi_Rank() == 0 )
+    if ( MORSE_My_Mpi_Rank() == 0 ) {
         print_header( argv[0], iparam);
+    }
 
     if (step < 1) step = 1;