From 96f77142374da8a4a7d4e5e8afd559fbaf0430e8 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 30 Aug 2023 10:44:28 -0300 Subject: Field 'Proto.is_vararg' uses only one bit So that the other bits can be used for other purposes. --- ldump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ldump.c') diff --git a/ldump.c b/ldump.c index 50d09f9a..bb15e45f 100644 --- a/ldump.c +++ b/ldump.c @@ -224,7 +224,7 @@ static void dumpFunction (DumpState *D, const Proto *f) { dumpInt(D, f->linedefined); dumpInt(D, f->lastlinedefined); dumpByte(D, f->numparams); - dumpByte(D, f->is_vararg); + dumpByte(D, f->flag); dumpByte(D, f->maxstacksize); dumpCode(D, f); dumpConstants(D, f); -- cgit v1.2.3-55-g6feb