From 4d0935ec0ffed827aade5594216fae15bed7c6b5 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 7 Sep 2001 14:30:16 -0300 Subject: better definition for `luaM_freelem' --- ltable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index e29e1819..a40e615f 100644 --- a/ltable.c +++ b/ltable.c @@ -127,7 +127,7 @@ Hash *luaH_new (lua_State *L, int size) { void luaH_free (lua_State *L, Hash *t) { luaM_freearray(L, t->node, t->size, Node); - luaM_freelem(L, t, Hash); + luaM_freelem(L, t); } -- cgit v1.2.3-55-g6feb