From c8a1b8028e2bcc490c213381c803d37ebc392bc0 Mon Sep 17 00:00:00 2001 From: JesusPoderoso Date: Tue, 21 May 2024 14:44:45 +0200 Subject: [PATCH] Refs #20575: Please linter Signed-off-by: JesusPoderoso --- examples/cpp/configuration/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/cpp/configuration/main.cpp b/examples/cpp/configuration/main.cpp index 2c660320ca6..8173839306a 100644 --- a/examples/cpp/configuration/main.cpp +++ b/examples/cpp/configuration/main.cpp @@ -77,18 +77,18 @@ int main( if (samples == 0) { std::cout << app_name << " running. Please press Ctrl+C to stop the " - << app_name << " at any time." << std::endl; + << app_name << " at any time." << std::endl; } else { std::cout << app_name << " running for " << samples << " samples. Please press Ctrl+C to stop the " - << app_name << " at any time." << std::endl; + << app_name << " at any time." << std::endl; } stop_app_handler = [&](int signum) { std::cout << "\n" << CLIParser::parse_signal(signum) << " received, stopping " << app_name - << " execution." << std::endl; + << " execution." << std::endl; app->stop(); }; @@ -101,7 +101,7 @@ int main( thread.join(); } - + Log::Reset(); return ret; }