mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
qemu: snapshot: Use typecasted switch in qemuDomainSnapshotPrepare()
Convert the switch to a typecasted value so that the compiler tracks additions for us.
This commit is contained in:
parent
5c13c3202f
commit
68c15a4f8b
@ -12635,7 +12635,7 @@ qemuDomainSnapshotPrepare(virConnectPtr conn,
|
||||
virDomainSnapshotDiskDefPtr disk = &def->disks[i];
|
||||
virDomainDiskDefPtr dom_disk = vm->def->disks[i];
|
||||
|
||||
switch (disk->snapshot) {
|
||||
switch ((virDomainSnapshotLocation) disk->snapshot) {
|
||||
case VIR_DOMAIN_SNAPSHOT_LOCATION_INTERNAL:
|
||||
found_internal = true;
|
||||
|
||||
@ -12692,7 +12692,7 @@ qemuDomainSnapshotPrepare(virConnectPtr conn,
|
||||
break;
|
||||
|
||||
case VIR_DOMAIN_SNAPSHOT_LOCATION_DEFAULT:
|
||||
default:
|
||||
case VIR_DOMAIN_SNAPSHOT_LOCATION_LAST:
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||
_("unexpected code path"));
|
||||
goto cleanup;
|
||||
|
Loading…
x
Reference in New Issue
Block a user