tests: eventtest: Fix coverity warning

We can ignore the result of virtTestResult here, because failure is
unconditionally reported by the callers
This commit is contained in:
Cole Robinson 2015-10-07 10:48:45 -04:00
parent 7cdf944b0a
commit a946c50ded

View File

@ -92,7 +92,7 @@ testEventReport(const char *name, bool failed, const char *msg, ...)
data.failed = failed;
data.msg = str;
virtTestRun(name, testEventResultCallback, &data);
ignore_value(virtTestRun(name, testEventResultCallback, &data));
va_end(vargs);
VIR_FREE(str);