mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
Added node_type_start() to villas-signal
villas-signal.cpp didn't call node_type_start(). This caused the
assertion which was added in 92e4b61e2e
to fail.
This commit is contained in:
parent
529cfc2473
commit
7a2e762a9c
1 changed files with 5 additions and 0 deletions
|
@ -157,6 +157,11 @@ int main(int argc, char *argv[])
|
|||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// nt == n._vt
|
||||
ret = node_type_start(nt, NULL);
|
||||
if (ret)
|
||||
error("Failed to initialize node type: %s", node_type_name(nt));
|
||||
|
||||
ret = node_check(&n);
|
||||
if (ret)
|
||||
error("Failed to verify node configuration");
|
||||
|
|
Loading…
Add table
Reference in a new issue