summaryrefslogtreecommitdiff
path: root/src/feature
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-01-10 10:20:39 -0500
committerNick Mathewson <nickm@torproject.org>2020-02-06 15:34:06 -0500
commit6076adde256c7480b569f928c28d14ee637fbd6e (patch)
tree3b7c21356f3d48381fdb292737841fba4394a653 /src/feature
parentf39ba52029c946304cc5a67fa93ca9aab10b2941 (diff)
downloadtor-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.c2
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;
}