aboutsummaryrefslogtreecommitdiffstats
path: root/module/lua
diff options
context:
space:
mode:
authorTony Hutter <[email protected]>2019-08-21 09:29:23 -0700
committerBrian Behlendorf <[email protected]>2019-08-21 09:29:23 -0700
commita9ebdfdd43204b8f907c5395cd68b2d745544730 (patch)
tree15ab1d6261a1c0e6791334ed809c81895e193bbc /module/lua
parentf66a1f88fb31716030c97f71df13a7ecef365a79 (diff)
Linux 5.3: Fix switch() fall though compiler errors
Fix some switch() fall-though compiler errors: abd.c:1504:9: error: this statement may fall through Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Tony Hutter <[email protected]> Closes #9170
Diffstat (limited to 'module/lua')
-rw-r--r--module/lua/llex.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/module/lua/llex.c b/module/lua/llex.c
index 8760155d0..50c301f59 100644
--- a/module/lua/llex.c
+++ b/module/lua/llex.c
@@ -431,9 +431,12 @@ static int llex (LexState *ls, SemInfo *seminfo) {
if (sep >= 0) {
read_long_string(ls, seminfo, sep);
return TK_STRING;
- }
- else if (sep == -1) return '[';
- else lexerror(ls, "invalid long string delimiter", TK_STRING);
+ } else if (sep == -1) {
+ return '[';
+ } else {
+ lexerror(ls, "invalid long string delimiter", TK_STRING);
+ break;
+ }
}
case '=': {
next(ls);