summaryrefslogtreecommitdiff
path: root/Core
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2017-04-13 15:08:07 +0800
committerGuo Mang <mang.guo@intel.com>2017-07-12 11:24:20 +0800
commit5d8694bb63fe6a043144063360f7dd8b165148e0 (patch)
treecd02fce80f2a8c83a2eb203faf019901b7351884 /Core
parent67d66e218ed52f5018e4769990bd5f02fe19fc7e (diff)
downloadedk2-platforms-5d8694bb63fe6a043144063360f7dd8b165148e0.tar.xz
MdeModulePkg DxeCore: Fix issue to print GUID value %g without pointer
https://bugzilla.tianocore.org/show_bug.cgi?id=474 Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> (cherry picked from commit e06179889586c37101e2900e7f52be9f0da12cda)
Diffstat (limited to 'Core')
-rw-r--r--Core/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/Core/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
index 5686d94e6a..5eee71bb2c 100644
--- a/Core/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
+++ b/Core/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c
@@ -773,7 +773,7 @@ FvIsBeingProcesssed (
for (Link = mFvHandleList.ForwardLink; Link != &mFvHandleList; Link = Link->ForwardLink) {
KnownHandle = CR(Link, KNOWN_HANDLE, Link, KNOWN_HANDLE_SIGNATURE);
if (CompareGuid (&FvNameGuid, &KnownHandle->FvNameGuid)) {
- DEBUG ((EFI_D_ERROR, "FvImage on FvHandle %p and %p has the same FvNameGuid %g.\n", FvHandle, KnownHandle->Handle, FvNameGuid));
+ DEBUG ((EFI_D_ERROR, "FvImage on FvHandle %p and %p has the same FvNameGuid %g.\n", FvHandle, KnownHandle->Handle, &FvNameGuid));
return NULL;
}
}