1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-11 09:17:52 +03:00

Fix warning about a non-literal format string in qemu_driver.c

This commit is contained in:
Laine Stump 2010-10-15 11:34:38 -04:00
parent e3e31303d5
commit d3fec47f81

View File

@ -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;
}