From 67d0a35317ae7b75a992fe0deec45cf48ca19ce1 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 21 Jan 2020 14:29:15 +0100 Subject: [PATCH] example: fix invalid return value --- include/villas/nodes/example.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/villas/nodes/example.hpp b/include/villas/nodes/example.hpp index 4ef7c317c..442441201 100644 --- a/include/villas/nodes/example.hpp +++ b/include/villas/nodes/example.hpp @@ -88,7 +88,7 @@ int example_write(struct node *n, struct sample *smps[], unsigned cnt, unsigned int example_read(struct node *n, struct sample *smps[], unsigned cnt, unsigned *release); /** @see node_type::reverse */ -char * example_reverse(struct node *n); +int example_reverse(struct node *n); /** @see node_type::poll_fds */ int example_poll_fds(struct node *n, int fds[]);