]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
lua/flowvarlib: fix formatting inside clang-format off
authorJason Ish <jason.ish@oisf.net>
Tue, 29 Apr 2025 17:24:49 +0000 (11:24 -0600)
committerVictor Julien <victor@inliniac.net>
Tue, 29 Apr 2025 23:25:57 +0000 (01:25 +0200)
src/util-lua-flowvarlib.c

index 3cd6978e6dc065436e164a67a218de2c8d9f8bf0..5d49b52ae4c02be495bb0cebe270871df63cdd9a 100644 (file)
@@ -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
 };