X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/253e5e44da23233d06314cfb81b82149e45c1d5d..7d4a9a7e27436e76b10c1b1f9ce794655dc070a2:/src/msg/msg_config.c diff --git a/src/msg/msg_config.c b/src/msg/msg_config.c index fbbafb0a1d..e45bb5f393 100644 --- a/src/msg/msg_config.c +++ b/src/msg/msg_config.c @@ -5,6 +5,7 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "msg_private.h" +#include "simgrid/sg_config.h" #include "xbt/sysdep.h" #include "xbt/log.h" @@ -25,7 +26,7 @@ void MSG_config(const char *name, ...) xbt_abort(); } va_start(pa, name); - xbt_cfg_set_vargs(_surf_cfg_set, name, pa); + xbt_cfg_set_vargs(_sg_cfg_set, name, pa); va_end(pa); return; }