From e304deacade1cee31a658e887ab04a2d2c37e7f2 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Wed, 24 Apr 2013 07:03:36 -0500 Subject: [PATCH] typo --- websocketpp/logger/basic.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocketpp/logger/basic.hpp b/websocketpp/logger/basic.hpp index 90eaa14038..a65f21a697 100644 --- a/websocketpp/logger/basic.hpp +++ b/websocketpp/logger/basic.hpp @@ -82,7 +82,7 @@ public: *m_out << "[" << get_timestamp() << "] " << "[" << names::channel_name(channel) << "] " << msg << "\n"; - m_out.flush(); + m_out->flush(); } void write(level channel, const char* msg) { @@ -91,7 +91,7 @@ public: *m_out << "[" << get_timestamp() << "] " << "[" << names::channel_name(channel) << "] " << msg << "\n"; - m_out.flush(); + m_out->flush(); } bool static_test(level channel) const {