diff options
author | Toomas Soome <[email protected]> | 2017-07-01 10:13:08 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-02-21 14:55:34 -0800 |
commit | 09302a4ca86df2a758c5b883e28b0952cfa31ff7 (patch) | |
tree | 2e5e5cd1a010923ff0f543566e362558c6e408b4 /module/lua/lgc.c | |
parent | a2819058f5c2dc03f34114aa716ec5a5db7f07bd (diff) |
OpenZFS 9035 - zfs: this statement may fall through
Authored by: Toomas Soome <[email protected]>
Reviewed by: Yuri Pankov <[email protected]>
Reviewed by: Andy Fiddaman <[email protected]>
Reviewed by: Matthew Ahrens <[email protected]>
Approved by: Dan McDonald <[email protected]>
Ported-by: Giuseppe Di Natale <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/9035
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/46ac8fdfc5
Closes #7206
Diffstat (limited to 'module/lua/lgc.c')
-rw-r--r-- | module/lua/lgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/lua/lgc.c b/module/lua/lgc.c index 9363112e4..55feb2411 100644 --- a/module/lua/lgc.c +++ b/module/lua/lgc.c @@ -676,7 +676,7 @@ static void freeobj (lua_State *L, GCObject *o) { case LUA_TUSERDATA: luaM_freemem(L, o, sizeudata(gco2u(o))); break; case LUA_TSHRSTR: G(L)->strt.nuse--; - /* go through */ + /* FALLTHROUGH */ case LUA_TLNGSTR: { luaM_freemem(L, o, sizestring(gco2ts(o))); break; |