summaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-03 16:53:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2015-03-03 16:53:13 -0300
commita00013c8d0d268616e004715da499e88e03b534c (patch)
tree3b2db21dd21acbf821cddd6e53172f1b4eeb4a9e /ltable.c
parentb9a1f27250efd0433b93d23b92da19566f9b78e1 (diff)
downloadlua-github-a00013c8d0d268616e004715da499e88e03b534c.tar.gz
'point2int' -> 'point2uint' (to reflect its actual result type)
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 5f4148eb..ea4751ae 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.c,v 2.104 2015/02/20 14:05:01 roberto Exp roberto $
+** $Id: ltable.c,v 2.105 2015/02/20 14:27:53 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -70,7 +70,7 @@
#define hashmod(t,n) (gnode(t, ((n) % ((sizenode(t)-1)|1))))
-#define hashpointer(t,p) hashmod(t, point2int(p))
+#define hashpointer(t,p) hashmod(t, point2uint(p))
#define dummynode (&dummynode_)