[tor-commits] [tor/master] Fix a warning about an extraneous semicolon

nickm at torproject.org nickm at torproject.org
Tue May 9 11:26:24 UTC 2017


commit ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef
Author: Nick Mathewson <nickm at 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;





More information about the tor-commits mailing list