From b20aa0dc0ba1260cf8ef1af103935c585f0a5468 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 14 Mar 2014 12:01:11 +0100 Subject: Fix compile warning in remote control --- src/RemoteControl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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() { -- cgit v1.2.3