1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

exec: fix argument parsing

This commit is contained in:
Steffen Vogel 2019-06-23 17:35:28 +02:00
parent d4fbf83054
commit 39f28149af

View file

@ -83,8 +83,8 @@ int exec_parse(struct node *n, json_t *cfg)
if (i == 0)
e->command = json_string_value(json_arg);
else
e->arguments.push_back(json_string_value(json_arg));
e->arguments.push_back(json_string_value(json_arg));
}
}