aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/table.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-10 16:59:21 +0100
committerKim Alvefur <zash@zash.se>2017-03-10 16:59:21 +0100
commit08c9156f20fe9700913f5b97e6199b396ed6a87f (patch)
treeaf21ea2d626caddb6c0e6f4b50e16a21dfb2b2f8 /util-src/table.c
parentb0eec64a3f56ee4020f2d328e6d51a07f45cab53 (diff)
parent384687ffa49ac61dddb91be1ec5de1572ba2c036 (diff)
downloadprosody-08c9156f20fe9700913f5b97e6199b396ed6a87f.tar.gz
prosody-08c9156f20fe9700913f5b97e6199b396ed6a87f.zip
Merge 0.10->trunk
Diffstat (limited to 'util-src/table.c')
-rw-r--r--util-src/table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/table.c b/util-src/table.c
index f1cd9e12..9a9553fc 100644
--- a/util-src/table.c
+++ b/util-src/table.c
@@ -24,7 +24,7 @@ int luaopen_util_table(lua_State *L) {
#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);
#endif
- lua_newtable(L);
+ lua_createtable(L, 0, 2);
lua_pushcfunction(L, Lcreate_table);
lua_setfield(L, -2, "create");
lua_pushcfunction(L, Lpack);