From: Serge Hallyn Date: Thu, 28 Feb 2013 22:08:43 +0000 (-0600) Subject: Fix a message typo X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4f773a8c30f1a6412358aa4fb02c61ed16302861;p=libvirt.git Fix a message typo As pointed out in https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1034661 The sentence "The function of PCI device addresses must less than 8" does not quite make sense. Update that to read "The function of PCI device addresses must be less than 8" Signed-off-by: Serge Hallyn --- diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c index f8f3ade994..201fac1e3b 100644 --- a/src/qemu/qemu_command.c +++ b/src/qemu/qemu_command.c @@ -1743,7 +1743,7 @@ qemuBuildDeviceAddressStr(virBufferPtr buf, if (info->addr.pci.function > 7) { virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("The function of PCI device addresses must " - "less than 8")); + "be less than 8")); return -1; } } else {