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