summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/luadevel/devel.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/luadevel/devel.cc b/tools/luadevel/devel.cc
index 7d0deecbcf..92539881ec 100644
--- a/tools/luadevel/devel.cc
+++ b/tools/luadevel/devel.cc
@@ -155,10 +155,11 @@ class LuaTableRef {
// invalid userdata -- fall through
}
- /* fall through */
+ /* fallthrough */
case LUA_TFUNCTION: // no support -- we could... string.format("%q", string.dump(value, true))
case LUA_TTABLE: // no nested tables, sorry.
- case LUA_TNIL: // fallthrough
+ case LUA_TNIL:
+ /* fallthrough */
default:
// invalid value
lua_pop (L, 2);