lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 644799537fede7892b2d7f705661e39246fce796
parent aa66ca76ce10db054e34de8a19a48d0beb5eb7a6
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Thu, 16 Jun 2016 10:35:43 -0300

allow more bits in 'callstatus' (use no extra space due to alignments)

Diffstat:
Mlstate.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lstate.h b/lstate.h @@ -1,5 +1,5 @@ /* -** $Id: lstate.h,v 2.129 2015/12/14 11:54:49 roberto Exp roberto $ +** $Id: lstate.h,v 2.130 2015/12/16 16:39:38 roberto Exp roberto $ ** Global State ** See Copyright Notice in lua.h */ @@ -88,7 +88,7 @@ typedef struct CallInfo { } u; ptrdiff_t extra; short nresults; /* expected number of results from this function */ - lu_byte callstatus; + unsigned short callstatus; } CallInfo;