From 1b65880229e0639d17f0491bbf93419a546b3bcd Mon Sep 17 00:00:00 2001 From: mdkinney Date: Thu, 9 Jun 2011 00:11:28 +0000 Subject: Fix ICC build issues git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11773 6f19259b-4bc3-4df7-8a09-765794883524 --- Nt32Pkg/CpuRuntimeDxe/Cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Nt32Pkg/CpuRuntimeDxe') diff --git a/Nt32Pkg/CpuRuntimeDxe/Cpu.c b/Nt32Pkg/CpuRuntimeDxe/Cpu.c index bcce412..4ac12a4 100644 --- a/Nt32Pkg/CpuRuntimeDxe/Cpu.c +++ b/Nt32Pkg/CpuRuntimeDxe/Cpu.c @@ -327,7 +327,7 @@ Returns: return EFI_INVALID_PARAMETER; } - gWinNt->QueryPerformanceCounter (TimerValue); + gWinNt->QueryPerformanceCounter ((LARGE_INTEGER *)TimerValue); if (TimerPeriod != NULL) { *TimerPeriod = mTimerPeriod; @@ -532,7 +532,7 @@ Returns: // // Retrieve the frequency of the performance counter in Hz. // - gWinNt->QueryPerformanceFrequency (&Frequency); + gWinNt->QueryPerformanceFrequency ((LARGE_INTEGER *)&Frequency); // // Convert frequency in Hz to a clock period in femtoseconds. -- cgit v1.1