From: Laine Stump Date: Fri, 18 Aug 2023 20:13:16 +0000 (-0400) Subject: qemu: turn two multiline log messages into single line X-Git-Tag: v9.7.0-rc1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=10e8a518a05922d5592d1405054aed3195aebf06;p=thirdparty%2Flibvirt.git qemu: turn two multiline log messages into single line Normally I wouldn't bother with a change like this, but I was touching the function anyway, and wanted to leave it looking nice and tidy. Signed-off-by: Laine Stump Reviewed-by: Michal Privoznik --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 5128b64364..5db42f0753 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -11418,8 +11418,7 @@ qemuNodeDeviceDetachFlags(virNodeDevicePtr dev, */ if (STREQ_NULLABLE(driverName, "kvm")) { virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s", - _("'legacy KVM' device assignment is no longer " - "supported on this system")); + _("'legacy KVM' device assignment is no longer supported on this system")); return -1; } @@ -11430,8 +11429,7 @@ qemuNodeDeviceDetachFlags(virNodeDevicePtr dev, if (!qemuHostdevHostSupportsPassthroughVFIO()) { virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s", - _("VFIO device assignment is currently not " - "supported on this system")); + _("VFIO device assignment is currently not supported on this system")); return -1; }