diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-06-02 09:09:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-06-11 10:11:54 -0400 |
commit | 80f1a2cbbdd0abd509711a5069f31855df5bcd79 (patch) | |
tree | 0500eb46d12dd6cf70d1a48e1c6206cb738a9bd7 /src/or/circuitmux.c | |
parent | c3adbf755b0bb6f77488a268dbc4f2bdc0e59b01 (diff) | |
download | tor-80f1a2cbbdd0abd509711a5069f31855df5bcd79.tar.gz tor-80f1a2cbbdd0abd509711a5069f31855df5bcd79.zip |
Add the -Wextra-semi warning from clang, and fix the cases where it triggers
Diffstat (limited to 'src/or/circuitmux.c')
-rw-r--r-- | src/or/circuitmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitmux.c b/src/or/circuitmux.c index cc1c4cd401..038904e68a 100644 --- a/src/or/circuitmux.c +++ b/src/or/circuitmux.c @@ -362,7 +362,7 @@ HT_HEAD(chanid_circid_muxinfo_map, chanid_circid_muxinfo_t); /* Emit a bunch of hash table stuff */ HT_PROTOTYPE(chanid_circid_muxinfo_map, chanid_circid_muxinfo_t, node, - chanid_circid_entry_hash, chanid_circid_entries_eq); + chanid_circid_entry_hash, chanid_circid_entries_eq) HT_GENERATE2(chanid_circid_muxinfo_map, chanid_circid_muxinfo_t, node, chanid_circid_entry_hash, chanid_circid_entries_eq, 0.6, tor_reallocarray_, tor_free_) |