libcnary: Remove unused 'node' parameter from node_list_create()
diff --git a/libcnary/include/node_list.h b/libcnary/include/node_list.h
index 7b9e311..380916e 100644
--- a/libcnary/include/node_list.h
+++ b/libcnary/include/node_list.h
@@ -38,7 +38,7 @@
 } node_list_t;
 
 void node_list_destroy(struct node_list_t* list);
-struct node_list_t* node_list_create(struct node_t* node);
+struct node_list_t* node_list_create();
 
 int node_list_add(node_list_t* list, node_t* node);
 int node_list_insert(node_list_t* list, unsigned int index, node_t* node);
diff --git a/libcnary/node.c b/libcnary/node.c
index fadc9de..6026925 100644
--- a/libcnary/node.c
+++ b/libcnary/node.c
@@ -61,7 +61,7 @@
 	node->isLeaf = TRUE;
 	node->isRoot = TRUE;
 	node->parent = NULL;
-	node->children = node_list_create(node);
+	node->children = node_list_create();
 
 	// Pass NULL to create a root node
 	if(parent != NULL) {
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 @@
 	}
 }
 
-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;