From: Cole Robinson Date: Thu, 9 Jun 2016 11:19:41 +0000 (-0400) Subject: qemu: migration: use consistent error message X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e6001cc557b8cd42e281d51adf475a21f36c77ac;p=libvirt.git 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 --- diff --git a/src/qemu/qemu_migration.c b/src/qemu/qemu_migration.c index 89350c89f4..a1ce84e442 100644 --- a/src/qemu/qemu_migration.c +++ b/src/qemu/qemu_migration.c @@ -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; }