tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 968235ce6f2beed984d0a4290cb30a45fb04ad5d
parent c11247e957ae8e3fb253aac86196dcef13dac92c
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed,  2 Jan 2019 15:45:48 -0500

Explicitly ignore check_result() result in test_voting_flags_minimal

Otherwise, coverity complains at is.

Diffstat:
Msrc/test/test_voting_flags.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/test/test_voting_flags.c b/src/test/test_voting_flags.c @@ -104,7 +104,7 @@ static void test_voting_flags_minimal(void *arg) { flag_vote_test_cfg_t *cfg = arg; - check_result(cfg); + (void) check_result(cfg); } static void @@ -189,4 +189,3 @@ struct testcase_t voting_flags_tests[] = { T(staledesc, TT_FORK), END_OF_TESTCASES }; -