aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/openzfs/module/lua/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/openzfs/module/lua/llex.c')
-rw-r--r--sys/contrib/openzfs/module/lua/llex.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/contrib/openzfs/module/lua/llex.c b/sys/contrib/openzfs/module/lua/llex.c
index f2c9bf826c82..bcdda4ccf036 100644
--- a/sys/contrib/openzfs/module/lua/llex.c
+++ b/sys/contrib/openzfs/module/lua/llex.c
@@ -1,4 +1,3 @@
-/* BEGIN CSTYLED */
/*
** $Id: llex.c,v 2.63.1.3 2015/02/09 17:56:34 roberto Exp $
** Lexical Analyzer
@@ -477,7 +476,7 @@ static int llex (LexState *ls, SemInfo *seminfo) {
else if (!lisdigit(ls->current)) return '.';
/* else go through */
}
- fallthrough;
+ zfs_fallthrough;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9': {
read_numeral(ls, seminfo);
@@ -528,4 +527,3 @@ int luaX_lookahead (LexState *ls) {
ls->lookahead.token = llex(ls, &ls->lookahead.seminfo);
return ls->lookahead.token;
}
-/* END CSTYLED */