From: Jason Ish Date: Tue, 29 Apr 2025 17:24:49 +0000 (-0600) Subject: lua/flowvarlib: fix formatting inside clang-format off X-Git-Tag: suricata-8.0.0-rc1~403 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35cf3782332f066f4d03489f4ecd043c731a07f4;p=thirdparty%2Fsuricata.git lua/flowvarlib: fix formatting inside clang-format off --- diff --git a/src/util-lua-flowvarlib.c b/src/util-lua-flowvarlib.c index 3cd6978e6d..5d49b52ae4 100644 --- a/src/util-lua-flowvarlib.c +++ b/src/util-lua-flowvarlib.c @@ -116,17 +116,17 @@ static int LuaFlowvarSet(lua_State *L) static const luaL_Reg flowvarlib[] = { // clang-format off - { "register", LuaFlowvarRegister, }, -{ "get", LuaFlowvarGet }, - { NULL, NULL, }, + { "register", LuaFlowvarRegister, }, + { "get", LuaFlowvarGet }, + { NULL, NULL, }, // clang-format on }; static const luaL_Reg flowvarmt[] = { // clang-format off - { "value", LuaFlowvarValue, }, - { "set", LuaFlowvarSet, }, - { NULL, NULL, }, + { "value", LuaFlowvarValue, }, + { "set", LuaFlowvarSet, }, + { NULL, NULL, }, // clang-format on };