From 3a91274547051935f92a9a51e1fad276810c73a0 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Mar 2015 12:42:59 -0300 Subject: details (avoid 'lint' warnings) --- ltable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.c') diff --git a/ltable.c b/ltable.c index ea4751ae..1a1b78d0 100644 --- a/ltable.c +++ b/ltable.c @@ -1,5 +1,5 @@ /* -** $Id: ltable.c,v 2.105 2015/02/20 14:27:53 roberto Exp roberto $ +** $Id: ltable.c,v 2.106 2015/03/03 19:53:13 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -546,7 +546,7 @@ const TValue *luaH_get (Table *t, const TValue *key) { lua_Integer k; if (luaV_tointeger(key, &k, 0)) /* index is int? */ return luaH_getint(t, k); /* use specialized version */ - /* else go through */ + /* else *//* FALLTHROUGH */ } default: { Node *n = mainposition(t, key); -- cgit v1.2.3-55-g6feb