From: Nick Mathewson Date: Mon, 17 Mar 2003 02:42:14 +0000 (+0000) Subject: Remove extraneous (and non-ansi) semis X-Git-Tag: tor-0.0.2pre8~282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a6b01ba44d1c43865d0c4da08133737dcb761cf;p=thirdparty%2Ftor.git Remove extraneous (and non-ansi) semis svn:r186 --- diff --git a/src/or/onion.c b/src/or/onion.c index 20a256b95d..080f53d1a8 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -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);