diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-05-09 07:25:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-09 07:25:34 -0400 |
commit | ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef (patch) | |
tree | cef45071247021c3ff1d01dd5dfe88af6578270e /src/or/channel.c | |
parent | 2e4f3b36bdfd5118a523b3fdbfadc0415daa0635 (diff) | |
download | tor-ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef.tar.gz tor-ef2248d09bf8dbe7f8213d5580b2a21d56fdcbef.zip |
Fix a warning about an extraneous semicolon
Diffstat (limited to 'src/or/channel.c')
-rw-r--r-- | src/or/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |