mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
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:
parent
7cdf944b0a
commit
a946c50ded
@ -92,7 +92,7 @@ testEventReport(const char *name, bool failed, const char *msg, ...)
|
|||||||
|
|
||||||
data.failed = failed;
|
data.failed = failed;
|
||||||
data.msg = str;
|
data.msg = str;
|
||||||
virtTestRun(name, testEventResultCallback, &data);
|
ignore_value(virtTestRun(name, testEventResultCallback, &data));
|
||||||
|
|
||||||
va_end(vargs);
|
va_end(vargs);
|
||||||
VIR_FREE(str);
|
VIR_FREE(str);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user