aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
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