diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-03 19:52:48 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-03 19:52:48 +0200 |
commit | 7e460fd43feab7c2fb6770415c110eaa14aa8304 (patch) | |
tree | 10e930161b20bb87cc5062521942d0d50bc8a06c /util-src/table.c | |
parent | ea346342bd8e8677c0a5f36828fb2dfa812a0a89 (diff) | |
download | prosody-7e460fd43feab7c2fb6770415c110eaa14aa8304.tar.gz prosody-7e460fd43feab7c2fb6770415c110eaa14aa8304.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.c | 2 |
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"); |