Roberto Ierusalimschy 25 年之前
父节点
当前提交
728ff20701
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lfunc.c

+ 2 - 2
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;