mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:26:17 +00:00
- Balance of an Memory Manager's AVL tree node can be negative, so make it a signed variable.
svn path=/trunk/; revision=36120
This commit is contained in:
parent
1d60e6189c
commit
d650c233dc
1 changed files with 1 additions and 1 deletions
|
@ -592,7 +592,7 @@ typedef struct _MMADDRESS_NODE
|
|||
{
|
||||
union
|
||||
{
|
||||
ULONG Balance:2;
|
||||
LONG Balance:2;
|
||||
struct _MMADDRESS_NODE *Parent;
|
||||
} u1;
|
||||
struct _MMADDRESS_NODE *LeftChild;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue