diff options
Diffstat (limited to 'src/lj_cparse.c')
-rw-r--r-- | src/lj_cparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_cparse.c b/src/lj_cparse.c index 7da4d12d..eadb38bb 100644 --- a/src/lj_cparse.c +++ b/src/lj_cparse.c | |||
@@ -1803,7 +1803,7 @@ static void cp_decl_single(CPState *cp) | |||
1803 | /* Protected callback for C parser. */ | 1803 | /* Protected callback for C parser. */ |
1804 | static TValue *cpcparser(lua_State *L, lua_CFunction dummy, void *ud) | 1804 | static TValue *cpcparser(lua_State *L, lua_CFunction dummy, void *ud) |
1805 | { | 1805 | { |
1806 | CPState *cp = cast(CPState *, ud); | 1806 | CPState *cp = (CPState *)ud; |
1807 | UNUSED(dummy); | 1807 | UNUSED(dummy); |
1808 | cframe_errfunc(L->cframe) = -1; /* Inherit error function. */ | 1808 | cframe_errfunc(L->cframe) = -1; /* Inherit error function. */ |
1809 | cp_init(cp); | 1809 | cp_init(cp); |