aboutsummaryrefslogtreecommitdiffstats
path: root/module/lua/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/lua/llex.c')
-rw-r--r--module/lua/llex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/lua/llex.c b/module/lua/llex.c
index a7144681c..e98d74320 100644
--- a/module/lua/llex.c
+++ b/module/lua/llex.c
@@ -235,7 +235,7 @@ static void read_numeral (LexState *ls, SemInfo *seminfo) {
expo = "Pp";
for (;;) {
if (check_next(ls, expo)) /* exponent part? */
- check_next(ls, "+-"); /* optional exponent sign */
+ (void) check_next(ls, "+-"); /* optional exponent sign */
if (lisxdigit(ls->current) || ls->current == '.')
save_and_next(ls);
else break;