Skip to content

Commit

Permalink
Refs #20575: Please linter
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <jesuspoderoso@eprosima.com>
  • Loading branch information
JesusPoderoso committed May 27, 2024
1 parent 41f2879 commit c8a1b80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/cpp/configuration/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
};

Expand All @@ -101,7 +101,7 @@ int main(

thread.join();
}

Log::Reset();
return ret;
}

0 comments on commit c8a1b80

Please sign in to comment.