mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:43:09 +00:00
[BOOTLIB] Fix 64 bit issues (#433)
This commit is contained in:
parent
8bbbab534a
commit
3be4081607
18 changed files with 85 additions and 58 deletions
|
@ -1835,7 +1835,7 @@ BlockIoEfiHashFunction (
|
|||
)
|
||||
{
|
||||
/* Get rid of the alignment bits to have a more unique number */
|
||||
return ((ULONG)Entry->Value >> 3) % TableSize;
|
||||
return ((ULONG_PTR)Entry->Value >> 3) % TableSize;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue