From 9ece83658638a27bc81a83df8672ce31143c0fe9 Mon Sep 17 00:00:00 2001 From: Samuel Gaist Date: Wed, 16 Jul 2025 18:16:39 +0200 Subject: [PATCH] refactor(userspace/falco): add missing initial value Signed-off-by: Samuel Gaist --- userspace/falco/app/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/falco/app/options.h b/userspace/falco/app/options.h index 52440ca6..35430f22 100644 --- a/userspace/falco/app/options.h +++ b/userspace/falco/app/options.h @@ -51,7 +51,7 @@ public: std::string gvisor_generate_config_with_socket; bool describe_all_rules = false; std::string describe_rule; - bool print_ignored_events; + bool print_ignored_events = false; bool list_fields = false; std::string list_source_fields; bool list_plugins = false;