Browse Source

Fix a warning about an extraneous semicolon

Nick Mathewson 7 years ago
parent
commit
ef2248d09b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/channel.c

+ 1 - 1
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;