diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-10 12:54:43 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-10 12:54:43 -0500 |
commit | d9e211ab7025acce3eb3a96d85791caff52ce095 (patch) | |
tree | 85b01ee7ca6ec8d07b312a77a2bb17a39e0a03a6 /src/feature/stats/rephist.c | |
parent | a9cc4ce0eb916255b447b7943c3a72a9feaccff9 (diff) | |
download | tor-d9e211ab7025acce3eb3a96d85791caff52ce095.tar.gz tor-d9e211ab7025acce3eb3a96d85791caff52ce095.zip |
Use semicolons after HT_PROTOTYPE and HT_GENERATE.
Diffstat (limited to 'src/feature/stats/rephist.c')
-rw-r--r-- | src/feature/stats/rephist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/stats/rephist.c b/src/feature/stats/rephist.c index b2817ee760..5ada142ca7 100644 --- a/src/feature/stats/rephist.c +++ b/src/feature/stats/rephist.c @@ -2285,9 +2285,9 @@ bidi_map_ent_hash(const bidi_map_entry_t *entry) } HT_PROTOTYPE(bidimap, bidi_map_entry_t, node, bidi_map_ent_hash, - bidi_map_ent_eq) + bidi_map_ent_eq); HT_GENERATE2(bidimap, bidi_map_entry_t, node, bidi_map_ent_hash, - bidi_map_ent_eq, 0.6, tor_reallocarray_, tor_free_) + bidi_map_ent_eq, 0.6, tor_reallocarray_, tor_free_); /* DOCDOC bidi_map_free */ static void |