diff options
author | Mike Pall <mike> | 2010-08-03 22:08:08 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-08-03 22:08:08 +0200 |
commit | a6b7952f7e095883d9a277f26b844ae1c9248999 (patch) | |
tree | 097b3b1a62ed321d091d02e2557e9edd7e98fb6c /src | |
parent | c5feda2d532495e64a468f0a1cf549e1760dbc6d (diff) | |
download | luajit-a6b7952f7e095883d9a277f26b844ae1c9248999.tar.gz luajit-a6b7952f7e095883d9a277f26b844ae1c9248999.tar.bz2 luajit-a6b7952f7e095883d9a277f26b844ae1c9248999.zip |
Use FuncState typedef in favor of struct.
Diffstat (limited to 'src')
-rw-r--r-- | src/lj_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
2219 | /* Entry point of bytecode parser. */ | 2219 | /* Entry point of bytecode parser. */ |
2220 | GCproto *lj_parse(LexState *ls) | 2220 | GCproto *lj_parse(LexState *ls) |
2221 | { | 2221 | { |
2222 | struct FuncState fs; | 2222 | FuncState fs; |
2223 | GCproto *pt; | 2223 | GCproto *pt; |
2224 | lua_State *L = ls->L; | 2224 | lua_State *L = ls->L; |
2225 | ls->chunkname = lj_str_newz(L, ls->chunkarg); | 2225 | ls->chunkname = lj_str_newz(L, ls->chunkarg); |