diff options
author | Nikias Bassen | 2017-03-28 02:51:25 +0200 |
---|---|---|
committer | Nikias Bassen | 2017-03-28 02:51:25 +0200 |
commit | 1406766a0c75f6a861afb73f1606036f2da79bd5 (patch) | |
tree | 5e89dc744ad61fabfcbb2241a64d617a4c340f09 | |
parent | dccd9290745345896e3a4a73154576a599fd8b7b (diff) | |
download | libplist-1406766a0c75f6a861afb73f1606036f2da79bd5.tar.gz libplist-1406766a0c75f6a861afb73f1606036f2da79bd5.tar.bz2 |
libcnary: Remove unused 'node' parameter from node_list_create()
-rw-r--r-- | libcnary/include/node_list.h | 2 | ||||
-rw-r--r-- | libcnary/node.c | 2 | ||||
-rw-r--r-- | libcnary/node_list.c | 2 |
3 files changed, 3 insertions, 3 deletions
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 @@ typedef struct node_list_t { } 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_t* node_create(node_t* parent, void* data) { 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 @@ 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; |