Explicitly ignore check_result() result in test_voting_flags_minimal

Otherwise, coverity complains at is.
This commit is contained in:
Nick Mathewson
2019-01-02 15:45:48 -05:00
parent c11247e957
commit 968235ce6f
+1 -2
View File
@@ -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
};