aboutsummaryrefslogtreecommitdiff
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-3a91274547051935f92a9a51e1fad276810c73a0.tar.gz
lua-3a91274547051935f92a9a51e1fad276810c73a0.tar.bz2
lua-3a91274547051935f92a9a51e1fad276810c73a0.zip
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 @@
1/* 1/*
2** $Id: ltable.c,v 2.105 2015/02/20 14:27:53 roberto Exp roberto $ 2** $Id: ltable.c,v 2.106 2015/03/03 19:53:13 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -546,7 +546,7 @@ const TValue *luaH_get (Table *t, const TValue *key) {
546 lua_Integer k; 546 lua_Integer k;
547 if (luaV_tointeger(key, &k, 0)) /* index is int? */ 547 if (luaV_tointeger(key, &k, 0)) /* index is int? */
548 return luaH_getint(t, k); /* use specialized version */ 548 return luaH_getint(t, k); /* use specialized version */
549 /* else go through */ 549 /* else *//* FALLTHROUGH */
550 } 550 }
551 default: { 551 default: {
552 Node *n = mainposition(t, key); 552 Node *n = mainposition(t, key);