diff --git a/OldMdePkg/Library/UefiDebugLibConOut/DebugLib.c b/OldMdePkg/Library/UefiDebugLibConOut/DebugLib.c index b3e83894c8..24ae1386c0 100644 --- a/OldMdePkg/Library/UefiDebugLibConOut/DebugLib.c +++ b/OldMdePkg/Library/UefiDebugLibConOut/DebugLib.c @@ -41,6 +41,7 @@ DebugPrint ( ) { CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH]; + CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH]; VA_LIST Marker; // @@ -59,9 +60,11 @@ DebugPrint ( // Convert the DEBUG() message to a Unicode String // VA_START (Marker, Format); - UnicodeVSPrintAsciiFormat (Buffer, sizeof (Buffer), Format, Marker); + AsciiVSPrint (AsciiBuffer, sizeof (AsciiBuffer), Format, Marker); + AsciiStrToUnicodeStr (AsciiBuffer, Buffer); VA_END (Marker); + // // Send the print string to the Console Output device // @@ -103,11 +106,13 @@ DebugAssert ( ) { CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH]; + CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH]; // // Generate the ASSERT() message in Unicode format // - UnicodeSPrintAsciiFormat (Buffer, sizeof (Buffer), "ASSERT %s(%d): %s\n", FileName, LineNumber, Description); + AsciiSPrint (AsciiBuffer, sizeof (AsciiBuffer), "ASSERT %a(%d): %a\n", FileName, LineNumber, Description); + AsciiStrToUnicodeStr (AsciiBuffer, Buffer); // // Send the print string to the Console Output device diff --git a/OldMdePkg/Library/UefiDebugLibStdErr/DebugLib.c b/OldMdePkg/Library/UefiDebugLibStdErr/DebugLib.c index d2fb46e23f..fc28213487 100644 --- a/OldMdePkg/Library/UefiDebugLibStdErr/DebugLib.c +++ b/OldMdePkg/Library/UefiDebugLibStdErr/DebugLib.c @@ -41,6 +41,7 @@ DebugPrint ( ) { CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH]; + CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH]; VA_LIST Marker; // @@ -59,7 +60,8 @@ DebugPrint ( // Convert the DEBUG() message to a Unicode String // VA_START (Marker, Format); - UnicodeVSPrintAsciiFormat (Buffer, sizeof (Buffer), Format, Marker); + AsciiVSPrint (AsciiBuffer, sizeof (AsciiBuffer), Format, Marker); + AsciiStrToUnicodeStr (AsciiBuffer, Buffer); VA_END (Marker); // @@ -103,11 +105,13 @@ DebugAssert ( ) { CHAR16 Buffer[MAX_DEBUG_MESSAGE_LENGTH]; + CHAR8 AsciiBuffer[MAX_DEBUG_MESSAGE_LENGTH]; // // Generate the ASSERT() message in Unicode format // - UnicodeSPrintAsciiFormat (Buffer, sizeof (Buffer), "ASSERT %s(%d): %s\n", FileName, LineNumber, Description); + AsciiSPrint (AsciiBuffer, sizeof (AsciiBuffer), "ASSERT %a(%d): %a\n", FileName, LineNumber, Description); + AsciiStrToUnicodeStr (AsciiBuffer, Buffer); // // Send the print string to the Standard Error device