From a6b7952f7e095883d9a277f26b844ae1c9248999 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Tue, 3 Aug 2010 22:08:08 +0200 Subject: [PATCH] Use FuncState typedef in favor of struct. --- src/lj_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lj_parse.c b/src/lj_parse.c index b825c01f..18c757a3 100644 --- a/src/lj_parse.c +++ b/src/lj_parse.c @@ -2219,7 +2219,7 @@ static void parse_chunk(LexState *ls) /* Entry point of bytecode parser. */ GCproto *lj_parse(LexState *ls) { - struct FuncState fs; + FuncState fs; GCproto *pt; lua_State *L = ls->L; ls->chunkname = lj_str_newz(L, ls->chunkarg);