diff options
Diffstat (limited to 'ltable.c')
-rw-r--r-- | ltable.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -127,7 +127,7 @@ Hash *luaH_new (lua_State *L, int size) { | |||
127 | 127 | ||
128 | void luaH_free (lua_State *L, Hash *t) { | 128 | void 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 | ||