mirror of https://gitee.com/openkylin/libvirt.git
Fix warning about a non-literal format string in qemu_driver.c
This commit is contained in:
parent
e3e31303d5
commit
d3fec47f81
|
@ -10385,7 +10385,7 @@ qemuDomainIsMigratable(virDomainDefPtr def)
|
|||
{
|
||||
if (def->nhostdevs > 0) {
|
||||
qemuReportError(VIR_ERR_OPERATION_INVALID,
|
||||
_("Domain with assigned host devices cannot be migrated"));
|
||||
"%s", _("Domain with assigned host devices cannot be migrated"));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue