mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix warning about signed differ
This commit is contained in:
parent
a219145349
commit
5ffa34b811
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ ParameterizedTest(struct param *p, json, json_load_cli)
|
|||
cr_assert_not_null(json);
|
||||
|
||||
auto argv = new const char*[p->argv.size() + 1];
|
||||
for (int i = 0; i < p->argv.size(); i++)
|
||||
for (unsigned i = 0; i < p->argv.size(); i++)
|
||||
argv[i] = p->argv[i].c_str();
|
||||
argv[p->argv.size()] = nullptr;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue