]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
layout.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 20 Jan 2017 16:09:37 +0000 (16:09 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Fri, 20 Jan 2017 16:09:37 +0000 (16:09 +0000)
git-svn-id: file:///svn/unbound/trunk@3994 be551aaa-1e26-0410-a405-d3ace91eadb9

util/rbtree.h

index 18202d71daa6149d2a971343920af6c48fd8e435..dfcf09ac6a8966193697591e4ef1f026238fd8f9 100644 (file)
@@ -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.