aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-18 15:55:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-18 15:55:09 -0300
commitfb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d (patch)
treecbad662b0a546d6a69a4d8e206f788e83bd2212c /lstate.h
parentd3a6d95b9af04359c77aed1eed39615b56141356 (diff)
downloadlua-fb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d.tar.gz
lua-fb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d.tar.bz2
lua-fb0f95a2b77f5be3b7be72c33dda9ad6d8894d4d.zip
call limit may be larger than shorts
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 481cd4fc..55167e57 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.15 2005/02/18 12:40:02 roberto Exp roberto $ 2** $Id: lstate.h,v 2.16 2005/02/23 17:30:22 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -107,7 +107,7 @@ struct lua_State {
107 int stacksize; 107 int stacksize;
108 CallInfo *end_ci; /* points after end of ci array*/ 108 CallInfo *end_ci; /* points after end of ci array*/
109 CallInfo *base_ci; /* array of CallInfo's */ 109 CallInfo *base_ci; /* array of CallInfo's */
110 unsigned short size_ci; /* size of array `base_ci' */ 110 int size_ci; /* size of array `base_ci' */
111 unsigned short nCcalls; /* number of nested C calls */ 111 unsigned short nCcalls; /* number of nested C calls */
112 lu_byte hookmask; 112 lu_byte hookmask;
113 lu_byte allowhook; 113 lu_byte allowhook;