
9 May
2017
9 May
'17
11:26 a.m.
commit ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef Author: Nick Mathewson <nickm@torproject.org> Date: Tue May 9 07:25:34 2017 -0400 Fix a warning about an extraneous semicolon --- src/or/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/channel.c b/src/or/channel.c index 0b99dc9..df6d7d3 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -106,7 +106,7 @@ HT_GENERATE2(channel_gid_map, channel_s, gidmap_node, channel_id_hash, channel_id_eq, 0.6, tor_reallocarray_, tor_free_) -HANDLE_IMPL(channel, channel_s,); +HANDLE_IMPL(channel, channel_s,) /* Counter for ID numbers */ static uint64_t n_channels_allocated = 0;