From: Laine Stump Date: Thu, 13 Oct 2016 18:50:23 +0000 (-0400) Subject: qemu: make error message in qemuDomainPCIAddressSetCreate more clear. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=116564e3b0a76b8bdd601972e34029f59a49699d;p=libvirt.git qemu: make error message in qemuDomainPCIAddressSetCreate more clear. This error should only ever be seen by a developer anyway, but the existing message made even less sense that this new version. --- diff --git a/src/qemu/qemu_domain_address.c b/src/qemu/qemu_domain_address.c index 4380840bb1..aac363f965 100644 --- a/src/qemu/qemu_domain_address.c +++ b/src/qemu/qemu_domain_address.c @@ -585,7 +585,7 @@ qemuDomainPCIAddressSetCreate(virDomainDefPtr def, if (idx >= addrs->nbuses) { virReportError(VIR_ERR_INTERNAL_ERROR, _("Inappropriate new pci controller index %zu " - "not found in addrs"), idx); + "exceeds addrs array length"), idx); goto error; }