From 765ef5daafee4f61b15ff005d8854df7bf120e21 Mon Sep 17 00:00:00 2001 From: Aldo Lacuku Date: Mon, 30 May 2022 08:57:52 +0200 Subject: [PATCH] chore(userspace/falco): fix punctuation typo in output message when loading plugins Signed-off-by: Aldo Lacuku --- userspace/falco/app_actions/list_plugins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/userspace/falco/app_actions/list_plugins.cpp b/userspace/falco/app_actions/list_plugins.cpp index f9d60440..3e61ce04 100644 --- a/userspace/falco/app_actions/list_plugins.cpp +++ b/userspace/falco/app_actions/list_plugins.cpp @@ -34,7 +34,7 @@ application::run_result application::list_plugins() os << "Capabilities: " << std::endl; if(p->caps() & CAP_SOURCING) { - os << " - Event Sourcing: (ID=" << p->id(); + os << " - Event Sourcing (ID=" << p->id(); os << ", source='" << p->event_source() << "')" << std::endl; } if(p->caps() & CAP_EXTRACTION)