From 1406766a0c75f6a861afb73f1606036f2da79bd5 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 28 Mar 2017 02:51:25 +0200 Subject: libcnary: Remove unused 'node' parameter from node_list_create() --- libcnary/node_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcnary/node_list.c') diff --git a/libcnary/node_list.c b/libcnary/node_list.c index 4b268e0..dd143bb 100644 --- a/libcnary/node_list.c +++ b/libcnary/node_list.c @@ -35,7 +35,7 @@ void node_list_destroy(node_list_t* list) { } } -node_list_t* node_list_create(node_t* node) { +node_list_t* node_list_create() { node_list_t* list = (node_list_t*) malloc(sizeof(node_list_t)); if(list == NULL) { return NULL; -- cgit v1.1-32-gdbae