From 0e974b226b765776b671107da234ba4ef8df5d38 Mon Sep 17 00:00:00 2001 From: Bernd Machenschalk Date: Wed, 16 Mar 2016 09:36:54 +0100 Subject: [PATCH] wrapper: fix compiler warning --- samples/wrapper/wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/wrapper/wrapper.cpp b/samples/wrapper/wrapper.cpp index 6744b8a305..54971e460f 100644 --- a/samples/wrapper/wrapper.cpp +++ b/samples/wrapper/wrapper.cpp @@ -489,7 +489,7 @@ void TASK::substitute_macros() { if (!exec_dir.empty()) { macro_substitute(exec_dir); } - for (int i = 0; i < vsetenv.size(); i++) { + for (unsigned int i = 0; i < vsetenv.size(); i++) { macro_substitute(vsetenv[i]); } if (!command_line.empty()) {