diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-14 12:01:11 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-14 12:01:11 +0100 |
commit | b20aa0dc0ba1260cf8ef1af103935c585f0a5468 (patch) | |
tree | 2d768e1a552419974bd67a77c35080900721fd7b /src/RemoteControl.h | |
parent | e49ef3625c3fea4f7845062bfeb6cceefd8dba8e (diff) | |
download | dabmux-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.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() { |