diff options
Diffstat (limited to 'PerformancePkg/Library')
-rw-r--r-- | PerformancePkg/Library/DxeTscTimerLib/DxeTscTimerLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PerformancePkg/Library/DxeTscTimerLib/DxeTscTimerLib.c b/PerformancePkg/Library/DxeTscTimerLib/DxeTscTimerLib.c index 3e7e0254a6..4891f96cfc 100644 --- a/PerformancePkg/Library/DxeTscTimerLib/DxeTscTimerLib.c +++ b/PerformancePkg/Library/DxeTscTimerLib/DxeTscTimerLib.c @@ -118,7 +118,7 @@ DxeTscTimerLibConstructor ( }
EndTSC = AsmReadTsc(); // TSC value 1ms later
- Status = gBS->AllocatePool (EfiBootServicesData, sizeof (UINT64), &TscFrequency);
+ Status = gBS->AllocatePool (EfiBootServicesData, sizeof (UINT64), (VOID **) &TscFrequency);
ASSERT_EFI_ERROR (Status);
*TscFrequency = MultU64x32 (
|