aboutsummaryrefslogtreecommitdiff
path: root/src/or/channel.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/channel.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/channel.c')
-rw-r--r--src/or/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/channel.c b/src/or/channel.c
index 3b818396b9..78a2fb9ab1 100644
--- a/src/or/channel.c
+++ b/src/or/channel.c
@@ -145,9 +145,9 @@ channel_idmap_eq(const channel_idmap_entry_t *a,
}
HT_PROTOTYPE(channel_idmap, channel_idmap_entry_s, node, channel_idmap_hash,
- channel_idmap_eq);
+ channel_idmap_eq)
HT_GENERATE2(channel_idmap, channel_idmap_entry_s, node, channel_idmap_hash,
- channel_idmap_eq, 0.5, tor_reallocarray_, tor_free_);
+ channel_idmap_eq, 0.5, tor_reallocarray_, tor_free_)
static cell_queue_entry_t * cell_queue_entry_dup(cell_queue_entry_t *q);
#if 0