summaryrefslogtreecommitdiff
path: root/MdeModulePkg
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg')
-rw-r--r--MdeModulePkg/Library/DxePrintLibPrint2Protocol/PrintLib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Library/DxePrintLibPrint2Protocol/PrintLib.c b/MdeModulePkg/Library/DxePrintLibPrint2Protocol/PrintLib.c
index d22d4d5566..079b2a9bd0 100644
--- a/MdeModulePkg/Library/DxePrintLibPrint2Protocol/PrintLib.c
+++ b/MdeModulePkg/Library/DxePrintLibPrint2Protocol/PrintLib.c
@@ -265,7 +265,7 @@ UnicodeVSPrint (
IN VA_LIST Marker
)
{
- UINT8 BaseListMarker[256];
+ UINT64 BaseListMarker[256 / sizeof (UINT64)];
DxePrintLibPrint2ProtocolVaListToBaseList (
FALSE,
@@ -415,7 +415,7 @@ UnicodeVSPrintAsciiFormat (
IN VA_LIST Marker
)
{
- UINT8 BaseListMarker[256];
+ UINT64 BaseListMarker[256 / sizeof (UINT64)];
DxePrintLibPrint2ProtocolVaListToBaseList (
TRUE,
@@ -616,7 +616,7 @@ AsciiVSPrint (
IN VA_LIST Marker
)
{
- UINT8 BaseListMarker[256];
+ UINT64 BaseListMarker[256 / sizeof (UINT64)];
DxePrintLibPrint2ProtocolVaListToBaseList (
TRUE,
@@ -763,7 +763,7 @@ AsciiVSPrintUnicodeFormat (
IN VA_LIST Marker
)
{
- UINT8 BaseListMarker[256];
+ UINT64 BaseListMarker[256 / sizeof (UINT64)];
DxePrintLibPrint2ProtocolVaListToBaseList (
FALSE,