X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a23cdba841776d9ef2396c8a8f7dc01bcc274094..8b64bd0986e0cbb2faa2ec3900332a1eb7863cf9:/src/xbt/module.c diff --git a/src/xbt/module.c b/src/xbt/module.c index cbad5ef2f5..a79815f017 100644 --- a/src/xbt/module.c +++ b/src/xbt/module.c @@ -30,12 +30,6 @@ struct xbt_module_ { /** @brief Initialize the xbt mechanisms. */ void xbt_init(int *argc, char **argv) { - xbt_init_defaultlog(argc, argv, NULL); -} - -/** @brief Initialize the xbt mechanisms. */ -void -xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) { static short int first_run = 1; if (!first_run) return; @@ -43,7 +37,7 @@ xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) { first_run = 0; VERB0("Initialize XBT"); - xbt_log_init(argc,argv,defaultlog); + xbt_log_init(argc,argv); } /** @brief Finalize the xbt mechanisms. */