]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix a message typo
authorSerge Hallyn <serge.hallyn@ubuntu.com>
Thu, 28 Feb 2013 22:08:43 +0000 (16:08 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 28 Feb 2013 22:29:10 +0000 (15:29 -0700)
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 <serge.hallyn@ubuntu.com>
src/qemu/qemu_command.c

index f8f3ade99459bbafd89b0aaafcb4cc2ffe9a473d..201fac1e3b3a9ac64f9d24635a443954d484498c 100644 (file)
@@ -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 {