From 65ac789565db4cbc018e8a28f3f2bc169a6d0be1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 2 Apr 2015 18:09:51 -0300 Subject: [PATCH] detail (comment) --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ltable.c b/ltable.c index 014e9171..b21c6c89 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.107 2015/03/30 15:36:53 roberto Exp roberto $ +** $Id: ltable.c,v 2.108 2015/03/30 19:51:00 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -369,7 +369,7 @@ void luaH_resize (lua_State *L, Table *t, unsigned int nasize, } } if (!isdummy(nold)) - luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old array */ + luaM_freearray(L, nold, cast(size_t, twoto(oldhsize))); /* free old hash */ }