Fix ICC build issues

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11773 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
mdkinney
2011-06-09 00:11:28 +00:00
parent 21ce7a4179
commit 1b65880229
3 changed files with 16 additions and 14 deletions

View File

@@ -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.