summaryrefslogtreecommitdiff
path: root/PerformancePkg/Dp_App/DpUtilities.c
diff options
context:
space:
mode:
Diffstat (limited to 'PerformancePkg/Dp_App/DpUtilities.c')
-rw-r--r--PerformancePkg/Dp_App/DpUtilities.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/PerformancePkg/Dp_App/DpUtilities.c b/PerformancePkg/Dp_App/DpUtilities.c
index dbb268a21c..1d48e1430a 100644
--- a/PerformancePkg/Dp_App/DpUtilities.c
+++ b/PerformancePkg/Dp_App/DpUtilities.c
@@ -23,7 +23,7 @@
#include <Library/PcdLib.h>
#include <Protocol/LoadedImage.h>
-#include <Protocol/Driverbinding.h>
+#include <Protocol/DriverBinding.h>
#include <Guid/Performance.h>
@@ -191,7 +191,7 @@ GetNameFromHandle (
Status = gBS->HandleProtocol (
Handle,
&gEfiLoadedImageProtocolGuid,
- &Image
+ (VOID**) &Image
);
if (EFI_ERROR (Status)) {
@@ -213,7 +213,7 @@ GetNameFromHandle (
Status = gBS->HandleProtocol (
DriverBinding->ImageHandle,
&gEfiLoadedImageProtocolGuid,
- &Image
+ (VOID**) &Image
);
}