From 35cf3782332f066f4d03489f4ecd043c731a07f4 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 29 Apr 2025 11:24:49 -0600 Subject: [PATCH] lua/flowvarlib: fix formatting inside clang-format off --- src/util-lua-flowvarlib.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 }; -- 2.47.2