commit aaf93b722c979ac2227eb3a72c36e456661e7016
parent d7bd7cfcacdaa47554125eab4a3384814000d6fa
Author: sin <sin@2f30.org>
Date: Thu, 1 Aug 2013 18:47:38 +0300
Remove superfluous ;
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/random/rballoc.c b/random/rballoc.c
@@ -19,12 +19,12 @@ RB_HEAD(free_tree, node) ft = RB_INITIALIZER(&ft);
RB_HEAD(alloc_tree, node) at = RB_INITIALIZER(&at);
static int ft_cmp(struct node *a, struct node *b);
-RB_PROTOTYPE(free_tree, node, entry, ft_cmp);
+RB_PROTOTYPE(free_tree, node, entry, ft_cmp)
static int at_cmp(struct node *a, struct node *b);
-RB_PROTOTYPE(alloc_tree, node, entry, at_cmp);
+RB_PROTOTYPE(alloc_tree, node, entry, at_cmp)
-RB_GENERATE(free_tree, node, entry, ft_cmp);
+RB_GENERATE(free_tree, node, entry, ft_cmp)
/* These are ordered by `siz' */
static int
ft_cmp(struct node *a, struct node *b)
@@ -36,7 +36,7 @@ ft_cmp(struct node *a, struct node *b)
return 0;
}
-RB_GENERATE(alloc_tree, node, entry, at_cmp);
+RB_GENERATE(alloc_tree, node, entry, at_cmp)
/* These are ordered by address */
static int
at_cmp(struct node *a, struct node *b)