summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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