]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: hlua: just indent functions
authorThierry FOURNIER / OZON.IO <thierry.fournier@ozon.io>
Mon, 12 Dec 2016 11:29:34 +0000 (12:29 +0100)
committerWilly Tarreau <w@1wt.eu>
Mon, 12 Dec 2016 13:34:56 +0000 (14:34 +0100)
Function indentation. The code is not modified. This is done in
the goal of better integration of the next patch

src/hlua.c

index 9d73fe83b45dbaf1a9e11937738260f214e4220f..a5efd247acbef4e39f7916ba870444c4db2168af 100644 (file)
@@ -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);