Remove extraneous (and non-ansi) semis

svn:r186
This commit is contained in:
Nick Mathewson
2003-03-17 02:42:14 +00:00
parent eda5ab1252
commit 5f15fbf9d3
+2 -2
View File
@@ -747,8 +747,8 @@ int compare_tracked_onions(struct tracked_onion *a, struct tracked_onion *b) {
return memcmp(a->digest, b->digest, 20);
}
RB_PROTOTYPE(tracked_tree, tracked_onion, node, compare_tracked_onions);
RB_GENERATE(tracked_tree, tracked_onion, node, compare_tracked_onions);
RB_PROTOTYPE(tracked_tree, tracked_onion, node, compare_tracked_onions)
RB_GENERATE(tracked_tree, tracked_onion, node, compare_tracked_onions)
void init_tracked_tree(void) {
RB_INIT(&tracked_root);