aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Pall <mike>2010-08-03 22:08:08 +0200
committerMike Pall <mike>2010-08-03 22:08:08 +0200
commita6b7952f7e095883d9a277f26b844ae1c9248999 (patch)
tree097b3b1a62ed321d091d02e2557e9edd7e98fb6c /src
parentc5feda2d532495e64a468f0a1cf549e1760dbc6d (diff)
downloadluajit-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.c2
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. */
2220GCproto *lj_parse(LexState *ls) 2220GCproto *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);