Archived
1
0
Fork 0

rbtree: remove unused arguments from INIT macro.

This commit is contained in:
Henrik Hautakoski 2011-02-01 12:00:07 +01:00
parent b5f0c3117c
commit d64f14af4e
4 changed files with 6 additions and 6 deletions

View file

@ -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) {