call limit may be larger than shorts

This commit is contained in:
Roberto Ierusalimschy
2005-03-18 15:55:09 -03:00
parent d3a6d95b9a
commit fb0f95a2b7
2 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lstate.h,v 2.15 2005/02/18 12:40:02 roberto Exp roberto $
** $Id: lstate.h,v 2.16 2005/02/23 17:30:22 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -107,7 +107,7 @@ struct lua_State {
int stacksize;
CallInfo *end_ci; /* points after end of ci array*/
CallInfo *base_ci; /* array of CallInfo's */
unsigned short size_ci; /* size of array `base_ci' */
int size_ci; /* size of array `base_ci' */
unsigned short nCcalls; /* number of nested C calls */
lu_byte hookmask;
lu_byte allowhook;