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