diff --git a/runtime/openmp/control/runtime_options.c b/runtime/openmp/control/runtime_options.c
index 66e6cc44a1d51bb61b1c4b60829c0ced06e3f678..5e5a2e5289825fde459a212e2ef54357eda94a85 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;
 }