diff options
| author | 2017-03-28 02:51:25 +0200 | |
|---|---|---|
| committer | 2017-03-28 02:51:25 +0200 | |
| commit | 1406766a0c75f6a861afb73f1606036f2da79bd5 (patch) | |
| tree | 5e89dc744ad61fabfcbb2241a64d617a4c340f09 /libcnary/node_list.c | |
| parent | dccd9290745345896e3a4a73154576a599fd8b7b (diff) | |
| download | libplist-1406766a0c75f6a861afb73f1606036f2da79bd5.tar.gz libplist-1406766a0c75f6a861afb73f1606036f2da79bd5.tar.bz2 | |
libcnary: Remove unused 'node' parameter from node_list_create()
Diffstat (limited to 'libcnary/node_list.c')
| -rw-r--r-- | libcnary/node_list.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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; | 
