From 7bd1e53753de7176eb0b23f2bf19ad2235dec826 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 4 Oct 2019 16:17:04 -0300 Subject: Fixed a warning and other minor issues Fixed some minor issues from the feedback for 5.4-beta rc1. --- lcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lcode.c') diff --git a/lcode.c b/lcode.c index abb8a811..3e4c5b49 100644 --- a/lcode.c +++ b/lcode.c @@ -1650,8 +1650,8 @@ void luaK_posfix (FuncState *fs, BinOpr opr, case OPR_SUB: { if (finishbinexpneg(fs, e1, e2, OP_ADDI, line, TM_SUB)) break; /* coded as (r1 + -I) */ - /* ELSE *//* FALLTHROUGH */ - } + /* ELSE */ + } /* FALLTHROUGH */ case OPR_DIV: case OPR_IDIV: case OPR_MOD: case OPR_POW: { codearith(fs, opr, e1, e2, 0, line); break; -- cgit v1.2.3-55-g6feb