Skip to content
Snippets Groups Projects
Commit f1ffdeea authored by Michael Davis's avatar Michael Davis
Browse files

[cta_admin] Removes superflous endl from output

parent eda04835
Branches
Tags
No related merge requests found
......@@ -139,7 +139,7 @@ void CtaAdminCmd::send() const
{
using namespace cta::xrd;
case Response::RSP_SUCCESS: std::cout << response.message_txt() << std::endl; break;
case Response::RSP_SUCCESS: std::cout << response.message_txt(); break;
case Response::RSP_ERR_PROTOBUF: throw XrdSsiPb::PbException(response.message_txt());
case Response::RSP_ERR_CTA: throw std::runtime_error(response.message_txt());
default: throw XrdSsiPb::PbException("Invalid response type.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment