mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
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 <behlendorf1@llnl.gov>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes #9170
This commit is contained in:
committed by
Brian Behlendorf
parent
f66a1f88fb
commit
a9ebdfdd43
+6
-3
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user