summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-30 12:42:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-30 12:42:59 -0300
commit3a91274547051935f92a9a51e1fad276810c73a0 (patch)
treedcf52962aa63919167f0d3b140c89904dfd05322 /ltable.c
parentf2a813ae108a04e7de0478bd3c3ebf332268b043 (diff)
downloadlua-github-3a91274547051935f92a9a51e1fad276810c73a0.tar.gz
details (avoid 'lint' warnings)
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c4
1 files changed, 2 insertions, 2 deletions
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);