aboutsummaryrefslogtreecommitdiff
path: root/src/or/hs_circuitmap.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-12-14 16:01:27 -0500
committerNick Mathewson <nickm@torproject.org>2016-12-14 16:01:27 -0500
commita8ac2a62cb29bc9831bafc477927b31a3204af98 (patch)
treec065366d5510998e5fc6e7fda6e6b4830774caee /src/or/hs_circuitmap.c
parent81360c4a5fde6d66a81c506af657df77d2e63cff (diff)
downloadtor-a8ac2a62cb29bc9831bafc477927b31a3204af98.tar.gz
tor-a8ac2a62cb29bc9831bafc477927b31a3204af98.zip
Fix a few clang warnings.
Diffstat (limited to 'src/or/hs_circuitmap.c')
-rw-r--r--src/or/hs_circuitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/hs_circuitmap.c b/src/or/hs_circuitmap.c
index 321c8dd1c6..5003b4b593 100644
--- a/src/or/hs_circuitmap.c
+++ b/src/or/hs_circuitmap.c
@@ -69,11 +69,11 @@ hs_circuit_hash_token(const or_circuit_t *circuit)
HT_PROTOTYPE(hs_circuitmap_ht, // The name of the hashtable struct
or_circuit_t, // The name of the element struct,
hs_circuitmap_node, // The name of HT_ENTRY member
- hs_circuit_hash_token, hs_circuits_have_same_token);
+ hs_circuit_hash_token, hs_circuits_have_same_token)
HT_GENERATE2(hs_circuitmap_ht, or_circuit_t, hs_circuitmap_node,
hs_circuit_hash_token, hs_circuits_have_same_token,
- 0.6, tor_reallocarray, tor_free_);
+ 0.6, tor_reallocarray, tor_free_)
#ifdef TOR_UNIT_TESTS