From: Wouter Wijngaards Date: Fri, 20 Jan 2017 16:09:37 +0000 (+0000) Subject: layout. X-Git-Tag: release-1.6.1rc1~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=240a012bd8cc964505b136add4297f0d83867453;p=thirdparty%2Funbound.git layout. git-svn-id: file:///svn/unbound/trunk@3994 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/util/rbtree.h b/util/rbtree.h index 18202d71d..dfcf09ac6 100644 --- a/util/rbtree.h +++ b/util/rbtree.h @@ -60,9 +60,9 @@ struct rbnode_type { /** right node (larger items) */ rbnode_type *right; /** pointer to sorting key */ - const void *key; + const void *key; /** colour of this node */ - uint8_t color; + uint8_t color; }; /** The nullpointer, points to empty node */ @@ -78,7 +78,7 @@ struct rbtree_type { rbnode_type *root; /** The number of the nodes in the tree */ - size_t count; + size_t count; /** * Key compare function. <0,0,>0 like strcmp.