qemu: driver: Don't return anything from qemuDomainBlockStatsGatherTotals

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2019-09-16 18:58:25 +02:00
parent 535b78ff03
commit e25dfbf58c

View File

@ -11412,7 +11412,7 @@ qemuDomainBlockResize(virDomainPtr dom,
}
static int
static void
qemuDomainBlockStatsGatherTotals(qemuBlockStatsPtr data,
qemuBlockStatsPtr total)
{
@ -11424,7 +11424,6 @@ qemuDomainBlockStatsGatherTotals(qemuBlockStatsPtr data,
total->wr_total_times += data->wr_total_times;
total->rd_total_times += data->rd_total_times;
total->flush_total_times += data->flush_total_times;
return 0;
}