qemu: migration: use consistent error message

The other two DomainHasBlockJob usage error messages don't contain
'an', so unify things to save translators some effort. Dropping
the 'an' is closer to the sentence structure in the errors from
qemuDomainDiskBlockJobIsActive as well
This commit is contained in:
Cole Robinson 2016-06-09 07:19:41 -04:00
parent b732704f49
commit e6001cc557
1 changed files with 1 additions and 1 deletions

View File

@ -2301,7 +2301,7 @@ qemuMigrationIsAllowed(virQEMUDriverPtr driver,
if (qemuDomainHasBlockjob(vm, false)) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
_("domain has an active block job"));
_("domain has active block job"));
return false;
}