From: Thierry FOURNIER / OZON.IO Date: Mon, 12 Dec 2016 11:29:34 +0000 (+0100) Subject: CLEANUP: hlua: just indent functions X-Git-Tag: v1.8-dev1~300 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e1d791a4a97bdecf03e6553ae97c48276e13d0f;p=thirdparty%2Fhaproxy.git 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 --- diff --git a/src/hlua.c b/src/hlua.c index 9d73fe83b4..a5efd247ac 100644 --- a/src/hlua.c +++ b/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);