mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-20 22:01:49 -04:00
CLEANUP: hlua: just indent functions
Function indentation. The code is not modified. This is done in the goal of better integration of the next patch
This commit is contained in:
parent
a9cf315b00
commit
3e1d791a4a
1 changed files with 5 additions and 5 deletions
10
src/hlua.c
10
src/hlua.c
|
|
@ -7192,11 +7192,11 @@ void hlua_init(void)
|
|||
lua_newtable(gL.T);
|
||||
|
||||
/* Register Lua functions. */
|
||||
hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
|
||||
hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
|
||||
hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
|
||||
hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
|
||||
hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
|
||||
hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
|
||||
hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
|
||||
hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
|
||||
hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
|
||||
hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
|
||||
|
||||
lua_settable(gL.T, -3);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue