From 4027187d0cb94e49b331c4982d214f6ed1b5cb8b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 26 Mar 2019 15:31:07 +0100 Subject: [PATCH] node: fix function signatures --- include/villas/node_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/villas/node_type.h b/include/villas/node_type.h index eddf431e3..b9639123f 100644 --- a/include/villas/node_type.h +++ b/include/villas/node_type.h @@ -66,7 +66,7 @@ struct node_type { * @retval 0 Success. Everything went well. * @retval <0 Error. Something went wrong. */ - int (*start)(); + int (*start)(struct super_node *sn); /** Global de-initialization per node type. * @@ -84,7 +84,7 @@ struct node_type { * @retval 0 Success. Everything went well. * @retval <0 Error. Something went wrong. */ - int (*init)(); + int (*init)(struct node *n); /** Free memory of an instance of this type. *