mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[FREELDR]
- Fix heap code for 64 bit (before someone asks: the reason to use ULONG_PTR instead of ULONG is warning free code without casts) svn path=/trunk/; revision=55675
This commit is contained in:
parent
48cf74fcca
commit
69172a1b38
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ PVOID FrLdrTempHeap;
|
|||
|
||||
typedef struct _BLOCK_DATA
|
||||
{
|
||||
ULONG_PTR Flink;
|
||||
ULONG_PTR Blink;
|
||||
ULONG_PTR Flink:32;
|
||||
ULONG_PTR Blink:32;
|
||||
} BLOCK_DATA, *PBLOCK_DATA;
|
||||
|
||||
typedef struct _HEAP_BLOCK
|
||||
|
|
Loading…
Reference in a new issue