aboutsummaryrefslogtreecommitdiff
path: root/src/or/rephist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-06-02 09:09:37 -0400
committerNick Mathewson <nickm@torproject.org>2016-06-11 10:11:54 -0400
commit80f1a2cbbdd0abd509711a5069f31855df5bcd79 (patch)
tree0500eb46d12dd6cf70d1a48e1c6206cb738a9bd7 /src/or/rephist.c
parentc3adbf755b0bb6f77488a268dbc4f2bdc0e59b01 (diff)
downloadtor-80f1a2cbbdd0abd509711a5069f31855df5bcd79.tar.gz
tor-80f1a2cbbdd0abd509711a5069f31855df5bcd79.zip
Add the -Wextra-semi warning from clang, and fix the cases where it triggers
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r--src/or/rephist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 50e8bf5db7..226739ca1b 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -2738,7 +2738,7 @@ bidi_map_ent_hash(const bidi_map_entry_t *entry)
}
HT_PROTOTYPE(bidimap, bidi_map_entry_t, node, bidi_map_ent_hash,
- bidi_map_ent_eq);
+ bidi_map_ent_eq)
HT_GENERATE2(bidimap, bidi_map_entry_t, node, bidi_map_ent_hash,
bidi_map_ent_eq, 0.6, tor_reallocarray_, tor_free_)