s390x/flic: fix compilation of kvm flic
2c21ee7
("migration: extend VMStateInfo") missed a void -> int return conversion for kvm_flic_save(). Fixes:2c21ee7
("migration: extend VMStateInfo") Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
c7f1cf01b8
commit
a87adb6685
@ -303,7 +303,7 @@ static int kvm_flic_save(QEMUFile *f, void *opaque, size_t size,
|
||||
* migration state */
|
||||
error_report("flic: couldn't allocate memory");
|
||||
qemu_put_be64(f, FLIC_FAILED);
|
||||
return;
|
||||
return 0;
|
||||
}
|
||||
|
||||
count = __get_all_irqs(flic, &buf, len);
|
||||
|
Loading…
Reference in New Issue
Block a user