aboutsummaryrefslogtreecommitdiffstats
path: root/src/RemoteControl.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-14 12:01:11 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2014-03-14 12:01:11 +0100
commitb20aa0dc0ba1260cf8ef1af103935c585f0a5468 (patch)
tree2d768e1a552419974bd67a77c35080900721fd7b /src/RemoteControl.h
parente49ef3625c3fea4f7845062bfeb6cceefd8dba8e (diff)
downloaddabmux-b20aa0dc0ba1260cf8ef1af103935c585f0a5468.tar.gz
dabmux-b20aa0dc0ba1260cf8ef1af103935c585f0a5468.tar.bz2
dabmux-b20aa0dc0ba1260cf8ef1af103935c585f0a5468.zip
Fix compile warning in remote control
Diffstat (limited to 'src/RemoteControl.h')
-rw-r--r--src/RemoteControl.h4
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() {