better definition for `luaM_freelem'

This commit is contained in:
Roberto Ierusalimschy
2001-09-07 14:30:16 -03:00
parent e1d072571e
commit 4d0935ec0f
2 changed files with 2 additions and 2 deletions

View File

@@ -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);
}