From 55b9adf5c186ab05fda942ee9173457d0d0922e4 Mon Sep 17 00:00:00 2001 From: antklein <59579659+antklein@users.noreply.github.com> Date: Tue, 15 Nov 2022 15:18:57 -0800 Subject: [PATCH] Fix MfciDxe Debug error print missing new line character (#97) ## Description * Add missing new line character to the end of a Debug print in MfciDxe. * This improves readability of debug logs. - [ ] Breaking change? No breaking change. - Will this change break pre-existing builds or functionality without action being taken? ## How This Was Tested * Verified log output is now properly formatted. ## Integration Instructions N/A --- MfciPkg/MfciDxe/MfciDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MfciPkg/MfciDxe/MfciDxe.c b/MfciPkg/MfciDxe/MfciDxe.c index 52331beb65..ffd818e862 100644 --- a/MfciPkg/MfciDxe/MfciDxe.c +++ b/MfciPkg/MfciDxe/MfciDxe.c @@ -652,7 +652,7 @@ ValidateBlobWithXdrCertificates ( if ((PublicKeyData + ALIGN_VALUE (PublicKeyDataLength, 4)) > PublicKeyDataXdrEnd) { DEBUG (( DEBUG_ERROR, - "%a - PcdMfciPkcs7CertBufferXdr size incorrect: PublicKeyData(0x%x) PublicKeyDataLength(0x%x) PublicKeyDataXdrEnd(0x%x)", + "%a - PcdMfciPkcs7CertBufferXdr size incorrect: PublicKeyData(0x%x) PublicKeyDataLength(0x%x) PublicKeyDataXdrEnd(0x%x)\n", __FUNCTION__, PublicKeyData, PublicKeyDataLength,