From ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 9 May 2017 07:25:34 -0400 Subject: [PATCH] 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 0b99dc9d6e..df6d7d3423 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;