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
1 changed files with 1 additions and 1 deletions

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