X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f36359b30ecc68ee445dc33611532597a8b0df44..b0103780cc9560a420c049b15a146b904be65b10:/src/xbt/config.c diff --git a/src/xbt/config.c b/src/xbt/config.c index 99559a76f0..6411ad50d7 100644 --- a/src/xbt/config.c +++ b/src/xbt/config.c @@ -9,6 +9,7 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#include #include "xbt/misc.h" #include "xbt/sysdep.h" #include "xbt/log.h" @@ -238,11 +239,11 @@ xbt_cfg_register(xbt_cfg_t cfg, break; case xbt_cfgelm_string: - res->content = xbt_dynar_new(sizeof(char*),&xbt_cfg_str_free); + res->content = xbt_dynar_new(sizeof(char*),xbt_cfg_str_free); break; case xbt_cfgelm_peer: - res->content = xbt_dynar_new(sizeof(xbt_peer_t),&xbt_peer_free_voidp); + res->content = xbt_dynar_new(sizeof(xbt_peer_t),xbt_peer_free_voidp); break; default: