From eee6ed8b117f008f43b0f6d002d409e434e97635 Mon Sep 17 00:00:00 2001 From: Anthony PERARD Date: Mon, 27 Apr 2026 12:01:44 +0200 Subject: [PATCH] OvmfPkg/XenBusDxe: Fix an error message Adding missing \n. Signed-off-by: Anthony PERARD --- OvmfPkg/XenBusDxe/EventChannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OvmfPkg/XenBusDxe/EventChannel.c b/OvmfPkg/XenBusDxe/EventChannel.c index 810c9bdb7f..351a9b5529 100644 --- a/OvmfPkg/XenBusDxe/EventChannel.c +++ b/OvmfPkg/XenBusDxe/EventChannel.c @@ -45,7 +45,7 @@ XenBusEventChannelAllocate ( &Parameter ); if (ReturnCode != 0) { - DEBUG ((DEBUG_ERROR, "ERROR: alloc_unbound failed with rc=%d", ReturnCode)); + DEBUG ((DEBUG_ERROR, "XenBus: alloc_unbound failed with rc=%d\n", ReturnCode)); return ReturnCode; }