Skip to content

Commit

Permalink
- fix warning
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@10381 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Jens Frenkel committed Nov 9, 2011
1 parent da4f410 commit 3210774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimulationRuntime/c/simulation/results/read_csv.cpp
Expand Up @@ -75,7 +75,7 @@ char** read_csv_variables(const char* filename)
}

char **res = (char**)malloc((1+variablesList.size())*sizeof(char));
for (int k = 0 ; k < variablesList.size(); k++)
for (unsigned int k = 0 ; k < variablesList.size(); k++)
{
res[k] = strdup(variablesList.at(k).c_str());
}
Expand Down

0 comments on commit 3210774

Please sign in to comment.