Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rewrite to avoid compiler warnings about unused variables.
authorArnaud Giersch <arnaud.giersch@free.fr>
Mon, 4 Nov 2013 12:34:20 +0000 (13:34 +0100)
committerArnaud Giersch <arnaud.giersch@free.fr>
Mon, 4 Nov 2013 12:40:32 +0000 (13:40 +0100)
src/simgrid/sg_config.c

index 58f791d..0f88330 100644 (file)
@@ -611,12 +611,12 @@ void sg_config_init(int *argc, char **argv)
             "Context factory to use in SIMIX. Possible values: thread");
     const char *dflt_ctx_fact = "thread";
 #ifdef CONTEXT_UCONTEXT
-    strcat(description, ", ucontext");
     dflt_ctx_fact = "ucontext";
+    strcat(strcat(description, ", "), dflt_ctx_fact);
 #endif
 #ifdef HAVE_RAWCTX
-    strcat(description, ", raw");
     dflt_ctx_fact = "raw";
+    strcat(strcat(description, ", "), dflt_ctx_fact);
 #endif
     strcat(description, ".");
     xbt_cfg_register(&_sg_cfg_set, "contexts/factory", description,