Replace misuse of list iteration

(cherry picked from commit 0cd309c5c7)
This commit is contained in:
Ignacio Etcheverry 2017-02-20 19:40:37 +01:00 committed by Rémi Verschelde
parent dffdf28349
commit 77cb8f058d

View file

@ -1973,9 +1973,9 @@ Error OS_Windows::execute(const String& p_path, const List<String>& p_arguments,
String argss; String argss;
argss="\"\""+p_path+"\""; argss="\"\""+p_path+"\"";
for(int i=0;i<p_arguments.size();i++) { for (const List<String>::Element* E=p_arguments.front(); E; E=E->next()) {
argss+=String(" \"")+p_arguments[i]+"\""; argss+=String(" \"")+E->get()+"\"";
} }
// print_line("ARGS: "+argss); // print_line("ARGS: "+argss);