aboutsummaryrefslogtreecommitdiffstats
path: root/module/lua/ltable.c
diff options
context:
space:
mode:
Diffstat (limited to 'module/lua/ltable.c')
-rw-r--r--module/lua/ltable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/lua/ltable.c b/module/lua/ltable.c
index 0ba462cfd..f6872babc 100644
--- a/module/lua/ltable.c
+++ b/module/lua/ltable.c
@@ -492,7 +492,7 @@ const TValue *luaH_get (Table *t, const TValue *key) {
return luaH_getint(t, k); /* use specialized version */
/* else go through */
}
- /* FALLTHROUGH */
+ fallthrough;
default: {
Node *n = mainposition(t, key);
do { /* check whether `key' is somewhere in the chain */