aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/connection_or.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-02-10 12:54:43 -0500
committerNick Mathewson <nickm@torproject.org>2020-02-10 12:54:43 -0500
commitd9e211ab7025acce3eb3a96d85791caff52ce095 (patch)
tree85b01ee7ca6ec8d07b312a77a2bb17a39e0a03a6 /src/core/or/connection_or.c
parenta9cc4ce0eb916255b447b7943c3a72a9feaccff9 (diff)
downloadtor-d9e211ab7025acce3eb3a96d85791caff52ce095.tar.gz
tor-d9e211ab7025acce3eb3a96d85791caff52ce095.zip
Use semicolons after HT_PROTOTYPE and HT_GENERATE.
Diffstat (limited to 'src/core/or/connection_or.c')
-rw-r--r--src/core/or/connection_or.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/connection_or.c b/src/core/or/connection_or.c
index 76bfbf0b30..d315241c99 100644
--- a/src/core/or/connection_or.c
+++ b/src/core/or/connection_or.c
@@ -1283,11 +1283,11 @@ or_connect_failure_ht_hash(const or_connect_failure_entry_t *entry)
}
HT_PROTOTYPE(or_connect_failure_ht, or_connect_failure_entry_t, node,
- or_connect_failure_ht_hash, or_connect_failure_ht_eq)
+ or_connect_failure_ht_hash, or_connect_failure_ht_eq);
HT_GENERATE2(or_connect_failure_ht, or_connect_failure_entry_t, node,
or_connect_failure_ht_hash, or_connect_failure_ht_eq,
- 0.6, tor_reallocarray_, tor_free_)
+ 0.6, tor_reallocarray_, tor_free_);
/* Initialize a given connect failure entry with the given identity_digest,
* addr and port. All field are optional except ocf. */