mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
MdeModulePkg PeiCore: Update debug message to print FV handle correctly
BfvHeader->FvLength is UINT64. Now, it prints with %x. It will cause the late FvHandle to be as zero. So, its type is converted to UINT32. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Cc: Star Zeng <star.zeng@intel.com>
This commit is contained in:
parent
a8e786e8b2
commit
3958242feb
@ -514,7 +514,7 @@ PeiInitializeFv (
|
|||||||
"The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",
|
"The %dth FV start address is 0x%11p, size is 0x%08x, handle is 0x%p\n",
|
||||||
(UINT32) PrivateData->FvCount,
|
(UINT32) PrivateData->FvCount,
|
||||||
(VOID *) BfvHeader,
|
(VOID *) BfvHeader,
|
||||||
BfvHeader->FvLength,
|
(UINT32) BfvHeader->FvLength,
|
||||||
FvHandle
|
FvHandle
|
||||||
));
|
));
|
||||||
PrivateData->FvCount ++;
|
PrivateData->FvCount ++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user