Skip to content

Commit

Permalink
Fix MfciDxe Debug error print missing new line character (microsoft#97)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
antklein committed Dec 9, 2022
1 parent c5d4b8b commit 08b1f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MfciPkg/MfciDxe/MfciDxe.c
Expand Up @@ -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,
Expand Down

0 comments on commit 08b1f6f

Please sign in to comment.