aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-09-07 14:30:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-09-07 14:30:16 -0300
commit4d0935ec0ffed827aade5594216fae15bed7c6b5 (patch)
treef86f3e8eb68b95c5b556b85b6de83fc7747ba38a /ltable.c
parente1d072571ec6f9d830e575a2ecdc95fd43428e53 (diff)
downloadlua-4d0935ec0ffed827aade5594216fae15bed7c6b5.tar.gz
lua-4d0935ec0ffed827aade5594216fae15bed7c6b5.tar.bz2
lua-4d0935ec0ffed827aade5594216fae15bed7c6b5.zip
better definition for `luaM_freelem'
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c2
1 files changed, 1 insertions, 1 deletions
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) {
127 127
128void luaH_free (lua_State *L, Hash *t) { 128void luaH_free (lua_State *L, Hash *t) {
129 luaM_freearray(L, t->node, t->size, Node); 129 luaM_freearray(L, t->node, t->size, Node);
130 luaM_freelem(L, t, Hash); 130 luaM_freelem(L, t);
131} 131}
132 132
133 133