Formatting fixes for app client tutorial step 5

This commit is contained in:
Peter Thorson
2014-03-02 19:02:11 -06:00
parent 98fd183210
commit 93d9b5f820
2 changed files with 24 additions and 6 deletions

View File

@@ -106,7 +106,8 @@ public:
websocketpp::lib::error_code ec;
m_endpoint.close(it->second->get_hdl(), websocketpp::close::status::going_away, "", ec);
if (ec) {
std::cout << "> Error closing connection " << it->second->get_id() << ": " << ec.message() << std::endl;
std::cout << "> Error closing connection " << it->second->get_id() << ": "
<< ec.message() << std::endl;
}
}