From 634dd8a2262af000e46f8832b9ac67cb437b3abb Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Wed, 8 Nov 2017 10:43:59 +0100
Subject: [PATCH] Minor

---
 doc/CMakeLists.txt         |  2 +-
 doc/doxygen/CMakeLists.txt |  2 +-
 timing/timing.c            | 15 ++++++++++-----
 3 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
index 7204f5008..512d5e76f 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 f66dcdfcc..0da86af36 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 22015352b..e928035c2 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;
 
-- 
GitLab