diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/RemoteControl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/RemoteControl.h b/src/RemoteControl.h index c0fec8d..fc1fa34 100644 --- a/src/RemoteControl.h +++ b/src/RemoteControl.h @@ -138,13 +138,13 @@ class RemoteControllerTelnet : public BaseRemoteController { public: RemoteControllerTelnet() : m_running(false), m_fault(false), - m_port(0) {} + m_port(0) { } RemoteControllerTelnet(int port) - : m_running(false), m_fault(false), + : m_running(true), m_fault(false), m_port(port), m_child_thread(&RemoteControllerTelnet::process, this, 0) - {} + { } ~RemoteControllerTelnet() { m_running = false; |