aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/signal.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-17 02:23:17 +0200
committerKim Alvefur <zash@zash.se>2014-09-17 02:23:17 +0200
commit4f6f0fe48047cf1832061f52aa96b9df5d9460fa (patch)
treecc0d784c48dd70d272897cbf4cc39ceed6c3479e /util-src/signal.c
parentc57e98cd7debd8d8ea46159cbbf2eb7597544d4c (diff)
downloadprosody-4f6f0fe48047cf1832061f52aa96b9df5d9460fa.tar.gz
prosody-4f6f0fe48047cf1832061f52aa96b9df5d9460fa.zip
util-src/*.c: Use the more concise lua_setfield
Diffstat (limited to 'util-src/signal.c')
-rw-r--r--util-src/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/signal.c b/util-src/signal.c
index 405689f5..3d0a8a50 100644
--- a/util-src/signal.c
+++ b/util-src/signal.c
@@ -391,7 +391,7 @@ int luaopen_util_signal(lua_State *L)
/* put the signals inside the library table too,
* they are only a reference */
lua_pushstring(L, LUA_SIGNAL);
- lua_createtable(L, 0, 0);
+ lua_newtable(L);
while (lua_signals[i].name != NULL)
{