Fix VS2003 cast

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9874 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
andrewfish 2010-01-30 20:19:44 +00:00
parent ab2a68f47e
commit 33e4913c5d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ GetNextHighMonotonicCount (
gCurrentMonotonicCount += 0x0000000100000000ULL;
*HighCount = RShiftU64 (gCurrentMonotonicCount, 32) & 0xFFFFFFFF;
*HighCount = (UINT32)RShiftU64 (gCurrentMonotonicCount, 32) & 0xFFFFFFFF;
return EFI_SUCCESS;
}