wrapper: fix compiler warning

This commit is contained in:
Bernd Machenschalk 2016-03-16 09:36:54 +01:00 committed by Christian Beer
parent 5ef7edb4ef
commit 0e974b226b
1 changed files with 1 additions and 1 deletions

View File

@ -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()) {