mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
qemu: Fix the error message for scsi host device's shareable checking
This fixes the wrong argument order.
This commit is contained in:
parent
6fdece9a33
commit
f406aa25f2
@ -1135,8 +1135,8 @@ qemuPrepareHostdevSCSIDevices(virQEMUDriverPtr driver,
|
||||
virReportError(VIR_ERR_OPERATION_INVALID,
|
||||
_("SCSI device %s is already in use by "
|
||||
"other domain(s) as '%s'"),
|
||||
tmp_shareable ? "shareable" : "non-shareable",
|
||||
virSCSIDeviceGetName(tmp));
|
||||
virSCSIDeviceGetName(tmp),
|
||||
tmp_shareable ? "shareable" : "non-shareable");
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user