1
0
Fork 0
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:
Dennis Potter 2018-07-19 16:53:44 +02:00
parent 529cfc2473
commit 7a2e762a9c

View file

@ -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");