aboutsummaryrefslogtreecommitdiffstats
path: root/module/lua/lstrlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/lua/lstrlib.c')
-rw-r--r--module/lua/lstrlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/lua/lstrlib.c b/module/lua/lstrlib.c
index a2e4084e9..902cc773e 100644
--- a/module/lua/lstrlib.c
+++ b/module/lua/lstrlib.c
@@ -500,7 +500,7 @@ static const char *match (MatchState *ms, const char *s, const char *p) {
}
case '+': /* 1 or more repetitions */
s++; /* 1 match already done */
- fallthrough;
+ zfs_fallthrough;
case '*': /* 0 or more repetitions */
s = max_expand(ms, s, p, ep);
break;