From 7a2e762a9c8e5607047fb4c2d40e18e15577fe2c Mon Sep 17 00:00:00 2001 From: Dennis Potter Date: Thu, 19 Jul 2018 16:53:44 +0200 Subject: [PATCH] Added node_type_start() to villas-signal villas-signal.cpp didn't call node_type_start(). This caused the assertion which was added in 92e4b61e2e1919139b2c6b247d3e0d1fde9bd5c3 to fail. --- src/villas-signal.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/villas-signal.cpp b/src/villas-signal.cpp index cac54a895..ac12613e7 100644 --- a/src/villas-signal.cpp +++ b/src/villas-signal.cpp @@ -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");