X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e7cdc14647fc01e576c8e820bf51cc96a679be17..6cf3e5a62a7a4a685ddce69bac69d71fe0966a86:/src/msg/msg_config.c diff --git a/src/msg/msg_config.c b/src/msg/msg_config.c index 31bed567c6..e45bb5f393 100644 --- a/src/msg/msg_config.c +++ b/src/msg/msg_config.c @@ -5,9 +5,9 @@ * 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" -#include "simgrid/simix.h" /** \brief set a configuration variable * @@ -26,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; }