From 728ff2070135b54c544b90020be268f53bf2d15a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Oct 2000 10:20:29 -0200 Subject: details --- lfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfunc.c b/lfunc.c index 6a012825..2f78a9ed 100644 --- a/lfunc.c +++ b/lfunc.c @@ -1,5 +1,5 @@ /* -** $Id: lfunc.c,v 1.32 2000/10/10 19:52:58 roberto Exp roberto $ +** $Id: lfunc.c,v 1.33 2000/10/18 17:19:09 roberto Exp roberto $ ** Auxiliary functions to manipulate prototypes and closures ** See Copyright Notice in lua.h */ @@ -18,7 +18,7 @@ Closure *luaF_newclosure (lua_State *L, int nelems) { - lint32 size = sizeclosure(nelems); + int size = sizeclosure(nelems); Closure *c = (Closure *)luaM_malloc(L, size); c->next = L->rootcl; L->rootcl = c; -- cgit v1.2.3-55-g6feb