From e71ddf8c9f6953b722d1c3dd0cfed7689c52531f Mon Sep 17 00:00:00 2001
From: Mathieu Faverge <mathieu.faverge@inria.fr>
Date: Wed, 12 May 2021 15:54:57 +0200
Subject: [PATCH] openmp/control: minor coding style

---
 runtime/openmp/control/runtime_options.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/runtime/openmp/control/runtime_options.c b/runtime/openmp/control/runtime_options.c
index 66e6cc44a..5e5a2e528 100644
--- a/runtime/openmp/control/runtime_options.c
+++ b/runtime/openmp/control/runtime_options.c
@@ -25,15 +25,15 @@
 void RUNTIME_options_init( RUNTIME_option_t *option, CHAM_context_t *chamctxt,
                            RUNTIME_sequence_t *sequence, RUNTIME_request_t *request )
 {
-    option->sequence   = sequence;
-    option->request    = request;
-    option->profiling  = CHAMELEON_PROFILING == CHAMELEON_TRUE;
-    option->parallel   = CHAMELEON_PARALLEL == CHAMELEON_TRUE;
-    option->priority   = RUNTIME_PRIORITY_MIN;
-    option->ws_wsize   = 0;
-    option->ws_hsize   = 0;
-    option->ws_worker  = NULL;
-    option->ws_host    = NULL;
+    option->sequence  = sequence;
+    option->request   = request;
+    option->profiling = CHAMELEON_PROFILING == CHAMELEON_TRUE;
+    option->parallel  = CHAMELEON_PARALLEL == CHAMELEON_TRUE;
+    option->priority  = RUNTIME_PRIORITY_MIN;
+    option->ws_wsize  = 0;
+    option->ws_hsize  = 0;
+    option->ws_worker = NULL;
+    option->ws_host   = NULL;
     return;
 }
 
-- 
GitLab