X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df12bbc75c274351f3b3a628740e0b3270f08e18..0afab0e550e09d35a4aaaae802c7f2ea17d2b860:/src/bindings/lua/lua_platf.c diff --git a/src/bindings/lua/lua_platf.c b/src/bindings/lua/lua_platf.c index a2ebe1130b..74d63eadf0 100644 --- a/src/bindings/lua/lua_platf.c +++ b/src/bindings/lua/lua_platf.c @@ -336,7 +336,10 @@ int console_AS_open(lua_State *L) { else if(!strcmp(mode,"none")) mode_int = A_surfxml_AS_routing_None; else xbt_die("Don't have the model name '%s'",mode); - sg_platf_new_AS_begin(id,mode_int); + s_sg_platf_AS_cbarg_t AS = SG_PLATF_AS_INITIALIZER; + AS.id = id; + AS.routing = mode_int; + sg_platf_new_AS_begin(&AS); return 0; }