From 0e002005b1bf17e962d4640ef7b9fae900514f1a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 24 Nov 2004 17:20:21 -0200 Subject: better names for `luaM_free...' macros --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index a55b510d..ceac4da7 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.8 2004/11/24 18:55:42 roberto Exp roberto $ +** $Id: ltable.c,v 2.9 2004/11/24 19:16:03 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -335,7 +335,7 @@ void luaH_free (lua_State *L, Table *t) { if (t->lsizenode) luaM_freearray(L, t->node, sizenode(t), Node); luaM_freearray(L, t->array, t->sizearray, TValue); - luaM_freelem(L, t); + luaM_free(L, t); } -- cgit v1.2.3-55-g6feb