fixes a compile error on visual studio when using interrupts

This commit is contained in:
Peter Thorson
2013-08-30 15:52:26 -05:00
parent bd9c9767e1
commit e9cb0b840f
2 changed files with 2 additions and 1 deletions

View File

@@ -96,7 +96,7 @@ void endpoint<connection,config>::interrupt(connection_hdl hdl,
connection_ptr con = get_con_from_hdl(hdl,ec);
if (ec) {return;}
m_alog.write(log::alevel::devel,"Interrupting connection"+con.get());
m_alog.write(log::alevel::devel,"Interrupting connection");
ec = con->interrupt();
}