From: Razvan Becheriu Date: Mon, 11 Mar 2019 18:07:52 +0000 (+0200) Subject: replace \n with std::endl X-Git-Tag: Kea-1.6.0-beta~223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71abceaa1647654431c38a39552ac2b03e47eb89;p=thirdparty%2Fkea.git replace \n with std::endl --- diff --git a/src/lib/dhcpsrv/benchmarks/memfile_lease_mgr_benchmark.cc b/src/lib/dhcpsrv/benchmarks/memfile_lease_mgr_benchmark.cc index 52e080d08e..7392c7e23e 100644 --- a/src/lib/dhcpsrv/benchmarks/memfile_lease_mgr_benchmark.cc +++ b/src/lib/dhcpsrv/benchmarks/memfile_lease_mgr_benchmark.cc @@ -46,7 +46,7 @@ public: LeaseMgrFactory::destroy(); startBackend(V4); } catch (...) { - std::cerr << "ERROR: unable to start memfile backend.\n"; + std::cerr << "ERROR: unable to start memfile backend." << std::endl; throw; } lmptr_ = &(LeaseMgrFactory::instance()); @@ -65,7 +65,7 @@ public: LeaseMgrFactory::create(getConfigString(u)); } catch (...) { std::cerr << "*** ERROR: unable to create instance of the Memfile " - << "lease database backend.\n"; + << "lease database backend." << std::endl; throw; } lmptr_ = &(LeaseMgrFactory::instance()); @@ -128,7 +128,7 @@ public: lmptr_->rollback(); } catch (...) { std::cerr << "WARNING: rollback has failed. This is surprising as " - << "memfile doesn't support rollback.\n"; + << "memfile doesn't support rollback." << std::endl; } LeaseMgrFactory::destroy();