summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-06-16 10:36:09 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2016-06-16 10:36:09 -0300
commit644799537fede7892b2d7f705661e39246fce796 (patch)
treea764583a294a44add9b51227f195291a49003b9c
parentaa66ca76ce10db054e34de8a19a48d0beb5eb7a6 (diff)
downloadlua-644799537fede7892b2d7f705661e39246fce796.tar.gz
lua-644799537fede7892b2d7f705661e39246fce796.tar.bz2
lua-644799537fede7892b2d7f705661e39246fce796.zip
allow more bits in 'callstatus' (use no extra space due to alignments)
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 17965d88..653e1a01 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.129 2015/12/14 11:54:49 roberto Exp roberto $ 2** $Id: lstate.h,v 2.130 2015/12/16 16:39:38 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*/
@@ -88,7 +88,7 @@ typedef struct CallInfo {
88 } u; 88 } u;
89 ptrdiff_t extra; 89 ptrdiff_t extra;
90 short nresults; /* expected number of results from this function */ 90 short nresults; /* expected number of results from this function */
91 lu_byte callstatus; 91 unsigned short callstatus;
92} CallInfo; 92} CallInfo;
93 93
94 94