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/nodelist/microdesc.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/nodelist/microdesc.c')
-rw-r--r-- | src/feature/nodelist/microdesc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/nodelist/microdesc.c b/src/feature/nodelist/microdesc.c index d32a4ea61e..cf7732b8dc 100644 --- a/src/feature/nodelist/microdesc.c +++ b/src/feature/nodelist/microdesc.c @@ -90,10 +90,10 @@ microdesc_eq_(microdesc_t *a, microdesc_t *b) } HT_PROTOTYPE(microdesc_map, microdesc_t, node, - microdesc_hash_, microdesc_eq_) + microdesc_hash_, microdesc_eq_); HT_GENERATE2(microdesc_map, microdesc_t, node, microdesc_hash_, microdesc_eq_, 0.6, - tor_reallocarray_, tor_free_) + tor_reallocarray_, tor_free_); /************************* md fetch fail cache *****************************/ |