From ef8721a40f2376e361efb73e09216114af8271ea Mon Sep 17 00:00:00 2001 From: gereon Date: Sun, 9 Dec 2012 23:08:09 +0100 Subject: [PATCH] removing pointless newlines --- src/mrmc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mrmc.cpp b/src/mrmc.cpp index 7f5d54c34..8c3e63180 100644 --- a/src/mrmc.cpp +++ b/src/mrmc.cpp @@ -77,17 +77,17 @@ int main(const int argc, const char* argv[]) { s = mrmc::settings::newInstance(argc, argv, nullptr); } catch (mrmc::exceptions::InvalidSettings&) { LOG4CPLUS_FATAL(logger, "Could not recover from settings error, terminating."); - std::cout << std::endl << mrmc::settings::help << std::endl; + std::cout << std::endl << mrmc::settings::help; delete s; return 1; } if (s->isSet("help")) { - std::cout << mrmc::settings::help << std::endl; + std::cout << mrmc::settings::help; return 0; } if (s->isSet("help-config")) { - std::cout << mrmc::settings::helpConfigfile << std::endl; + std::cout << mrmc::settings::helpConfigfile; return 0; } if (s->isSet("test-prctl")) {