瀏覽代碼

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

Roberto Ierusalimschy 9 年之前
父節點
當前提交
644799537f
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lstate.h

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