From f4b222d3224c9b2b4657ccc2e4eb1218da8a889b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 17 Feb 2018 11:18:26 +0100 Subject: [PATCH] fix compiler error --- lib/node.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node.c b/lib/node.c index 714b75694..f5d2716d5 100644 --- a/lib/node.c +++ b/lib/node.c @@ -59,6 +59,7 @@ int node_init(struct node *n, struct node_type *vt) /* Add internal hooks if they are not already in the list */ list_init(&n->hooks); if (!n->no_builtin) { + int ret; for (size_t i = 0; i < list_length(&plugins); i++) { struct plugin *q = (struct plugin *) list_at(&plugins, i);