rbtree: remove unused arguments from INIT macro.
This commit is contained in:
parent
b5f0c3117c
commit
d64f14af4e
4 changed files with 6 additions and 6 deletions
|
|
@ -12,7 +12,7 @@ static int vcmp(const void *a, const void *b);
|
|||
static void vdelete(void *ptr);
|
||||
|
||||
/* data */
|
||||
static rbtree tree = RBTREE_INIT(NULL, NULL, vcmp);
|
||||
static rbtree tree = RBTREE_INIT(vcmp);
|
||||
static int keyref[NODES];
|
||||
|
||||
static int vcmp(const void *a, const void *b) {
|
||||
|
|
|
|||
Reference in a new issue