From bea91ca844ab58886f958140501a585f4d1d942f Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 13 Oct 2021 12:41:48 +0200 Subject: [PATCH] fix(userspace/engine): properly constify m_default_ruleset. Signed-off-by: Federico Di Pierro --- userspace/engine/falco_engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/engine/falco_engine.h b/userspace/engine/falco_engine.h index c5c0fc39..36491d80 100644 --- a/userspace/engine/falco_engine.h +++ b/userspace/engine/falco_engine.h @@ -266,7 +266,7 @@ private: double m_sampling_multiplier; std::string m_lua_main_filename = "rule_loader.lua"; - static std::string m_default_ruleset; + static const std::string m_default_ruleset; uint32_t m_default_ruleset_id; std::string m_extra;