]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Revert "qemuValidateDomainDefPCIFeature: un-break error messages"
authorLaine Stump <laine@redhat.com>
Wed, 20 Oct 2021 18:54:54 +0000 (14:54 -0400)
committerLaine Stump <laine@redhat.com>
Tue, 26 Oct 2021 03:18:41 +0000 (23:18 -0400)
This reverts commit 7d074c56830c5d435f87667299cc102650dbbb4f.

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Ani Sinha <ani@anisinha.ca>
src/qemu/qemu_validate.c

index d3b9691db53ebda5ecfe65f704f6d71c601853cb..0cb4542efd58252a428d3b1c18194e0c118ff4c1 100644 (file)
@@ -194,7 +194,8 @@ qemuValidateDomainDefPCIFeature(const virDomainDef *def,
             case VIR_DOMAIN_PCI_ACPI_BRIDGE_HOTPLUG:
                 if (!ARCH_IS_X86(def->os.arch)) {
                     virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
-                                   _("acpi-bridge-hotplug is not available for architecture '%s'"),
+                                   _("acpi-bridge-hotplug is not available "
+                                   "for architecture '%s'"),
                                    virArchToString(def->os.arch));
                     return -1;
                 }
@@ -202,7 +203,8 @@ qemuValidateDomainDefPCIFeature(const virDomainDef *def,
                     !virQEMUCapsGet(qemuCaps,
                                     QEMU_CAPS_PIIX4_ACPI_HOTPLUG_BRIDGE)) {
                     virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
-                                   _("acpi-bridge-hotplug is not available with this QEMU binary"));
+                                   _("acpi-bridge-hotplug is not available "
+                                   "with this QEMU binary"));
                     return -1;
                 }
                 break;