diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-10 10:20:39 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-06 15:34:06 -0500 |
commit | 6076adde256c7480b569f928c28d14ee637fbd6e (patch) | |
tree | 3b7c21356f3d48381fdb292737841fba4394a653 /src/feature | |
parent | f39ba52029c946304cc5a67fa93ca9aab10b2941 (diff) | |
download | tor-6076adde256c7480b569f928c28d14ee637fbd6e.tar.gz tor-6076adde256c7480b569f928c28d14ee637fbd6e.zip |
circuitbuild: expect bug message that clang-format will generate.
clang-format wants to put no space here, so we need to tell the test
to expect a lack of a space.
Diffstat (limited to 'src/feature')
-rw-r--r-- | src/feature/dirauth/dirvote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/dirauth/dirvote.c b/src/feature/dirauth/dirvote.c index 9490867e82..aec7a06c7a 100644 --- a/src/feature/dirauth/dirvote.c +++ b/src/feature/dirauth/dirvote.c @@ -886,7 +886,7 @@ dirvote_get_intermediate_param_value(const smartlist_t *param_list, int ok; value = (int32_t) tor_parse_long(integer_str, 10, INT32_MIN, INT32_MAX, &ok, NULL); - if (BUG(! ok)) + if (BUG(!ok)) return default_val; ++n_found; } |