From 1a0796d315a2b0ac8a51a9a7dbbef16759e8ae83 Mon Sep 17 00:00:00 2001 From: Sven Almgren Date: Thu, 15 Mar 2012 12:57:34 +0100 Subject: [PATCH] Removed duplicate variable in assignment (m_state = m_state = X) --- src/processors/hybi.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processors/hybi.hpp b/src/processors/hybi.hpp index ed410019de..01659469cf 100644 --- a/src/processors/hybi.hpp +++ b/src/processors/hybi.hpp @@ -397,7 +397,7 @@ public: } void reset() { - m_state = m_state = hybi_state::READ_HEADER; + m_state = hybi_state::READ_HEADER; m_header.reset(); }