From a430e275dddab24059ba15d2621e518562392540 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Thu, 8 Aug 2019 09:07:09 -0400 Subject: [PATCH] Fix lua compile error on most targets, introduced in 8d77ec8 Change-Id: I217f78a9e348a18552563c6c3b235c9aed956f54 --- apps/plugins/lua/ldebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/lua/ldebug.c b/apps/plugins/lua/ldebug.c index 4c3fc1df28..cf882467d0 100644 --- a/apps/plugins/lua/ldebug.c +++ b/apps/plugins/lua/ldebug.c @@ -253,7 +253,7 @@ static int stripdebug (lua_State *L, Proto *f, const int level) { case 3: len += f->sizelineinfo; f->packedlineinfo = luaM_freearray(L, f->packedlineinfo, f->sizelineinfo, unsigned char); - f->f->sizelineinfo = 0; + f->sizelineinfo = 0; case 2: len += f->sizelocvars * (sizeof(struct LocVar) + sizeof(dummy->tsv) + sizeof(struct LocVar *)); f->locvars = luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);