aboutsummaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lundump.c b/lundump.c
index 674bf21f..07c42e62 100644
--- a/lundump.c
+++ b/lundump.c
@@ -287,7 +287,7 @@ static void loadFunction (LoadState *S, Proto *f) {
287 f->linedefined = loadInt(S); 287 f->linedefined = loadInt(S);
288 f->lastlinedefined = loadInt(S); 288 f->lastlinedefined = loadInt(S);
289 f->numparams = loadByte(S); 289 f->numparams = loadByte(S);
290 f->is_vararg = loadByte(S); 290 f->flag = loadByte(S) & PF_ISVARARG; /* keep only the meaningful flags */
291 f->maxstacksize = loadByte(S); 291 f->maxstacksize = loadByte(S);
292 loadCode(S, f); 292 loadCode(S, f);
293 loadConstants(S, f); 293 loadConstants(S, f);