From 3e1d791a4a97bdecf03e6553ae97c48276e13d0f Mon Sep 17 00:00:00 2001 From: "Thierry FOURNIER / OZON.IO" Date: Mon, 12 Dec 2016 12:29:34 +0100 Subject: [PATCH] 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 --- src/hlua.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/hlua.c b/src/hlua.c index 9d73fe83b..a5efd247a 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);