aboutsummaryrefslogtreecommitdiff
path: root/src/lj_lex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_lex.c')
-rw-r--r--src/lj_lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_lex.c b/src/lj_lex.c
index 5a8f1003..c988a6c1 100644
--- a/src/lj_lex.c
+++ b/src/lj_lex.c
@@ -61,7 +61,7 @@ static LJ_AINLINE LexChar lex_next(LexState *ls)
61/* Save character. */ 61/* Save character. */
62static LJ_AINLINE void lex_save(LexState *ls, LexChar c) 62static LJ_AINLINE void lex_save(LexState *ls, LexChar c)
63{ 63{
64 lj_buf_putb(ls->L, &ls->sb, c); 64 lj_buf_putb(&ls->sb, c);
65} 65}
66 66
67/* Save previous character and get next character. */ 67/* Save previous character and get next character. */