aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/table.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-04-03 19:52:48 +0200
committerKim Alvefur <zash@zash.se>2015-04-03 19:52:48 +0200
commite866ef555a9af6c3d0dbeea2ee93b6b935c4c146 (patch)
tree10e930161b20bb87cc5062521942d0d50bc8a06c /util-src/table.c
parent28c58565ace33870970010c9d195c5da5d9cf4d1 (diff)
downloadprosody-e866ef555a9af6c3d0dbeea2ee93b6b935c4c146.tar.gz
prosody-e866ef555a9af6c3d0dbeea2ee93b6b935c4c146.zip
util-src/*.c: astyle --indent=tab --brackets=attach --indent-switches --break-blocks --pad-oper --unpad-paren --add-brackets --align-pointer=type --lineend=linux
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 118ee334..6ad45dce 100644
--- a/util-src/table.c
+++ b/util-src/table.c
@@ -6,7 +6,7 @@ static int Lcreate_table(lua_State* L) {
return 1;
}
-int luaopen_util_table(lua_State *L) {
+int luaopen_util_table(lua_State* L) {
lua_newtable(L);
lua_pushcfunction(L, Lcreate_table);
lua_setfield(L, -2, "create");