Fix 64-bit compile bug

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10650 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
andrewfish 2010-07-14 22:51:06 +00:00
parent 67f86803ce
commit 47d475f917
1 changed files with 2 additions and 2 deletions

View File

@ -973,7 +973,7 @@ Returns:
return EFI_MEDIA_CHANGED;
}
if ((UINT32) Buffer % Private->Media.IoAlign != 0) {
if ((UINTN) Buffer % Private->Media.IoAlign != 0) {
return EFI_INVALID_PARAMETER;
}
@ -1256,7 +1256,7 @@ SetFilePointer64 (
IN UNIX_BLOCK_IO_PRIVATE *Private,
IN INT64 DistanceToMove,
OUT UINT64 *NewFilePointer,
IN INTN MoveMethod
IN INT32 MoveMethod
)
/*++