From 57621a57a11701d46bfd126038157f7e2038235e Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 1 May 2014 20:39:54 +0200 Subject: Aesthetic fixes for RemoteControl --- src/RemoteControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/RemoteControl.cpp') diff --git a/src/RemoteControl.cpp b/src/RemoteControl.cpp index b3fdfec..854de76 100644 --- a/src/RemoteControl.cpp +++ b/src/RemoteControl.cpp @@ -206,7 +206,7 @@ void RemoteControllerTelnet::dispatch_command(tcp::socket& socket, string comman if (cmd.size() >= 4) { try { stringstream new_param_value; - for (int i = 3; i < cmd.size(); i++) { + for (size_t i = 3; i < cmd.size(); i++) { new_param_value << cmd[i]; if (i+1 < cmd.size()) { -- cgit v1.2.3