aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/host/minilua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/minilua.c b/src/host/minilua.c
index 79150286..cfc7491d 100644
--- a/src/host/minilua.c
+++ b/src/host/minilua.c
@@ -1134,7 +1134,7 @@ if(!cl->isC){
1134CallInfo*ci; 1134CallInfo*ci;
1135StkId st,base; 1135StkId st,base;
1136Proto*p=cl->p; 1136Proto*p=cl->p;
1137luaD_checkstack(L,p->maxstacksize); 1137luaD_checkstack(L,p->maxstacksize+p->numparams);
1138func=restorestack(L,funcr); 1138func=restorestack(L,funcr);
1139if(!p->is_vararg){ 1139if(!p->is_vararg){
1140base=func+1; 1140base=func+1;