Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the plugins from the command line, and document it
[simgrid.git] / src / bindings / lua / lua_host.cpp
index 7f35793..8f7cb86 100644 (file)
@@ -75,7 +75,7 @@ static int l_host_get_by_name(lua_State * L)
 static int l_host_get_name(lua_State * L)
 {
   sg_host_t ht = sglua_check_host(L, 1);
-  lua_pushstring(L, ht->getCname());
+  lua_pushstring(L, ht->get_cname());
   return 1;
 }