- 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:
Aleksey Bragin 2008-09-10 11:25:28 +00:00
parent 1d60e6189c
commit d650c233dc

View file

@ -592,7 +592,7 @@ typedef struct _MMADDRESS_NODE
{
union
{
ULONG Balance:2;
LONG Balance:2;
struct _MMADDRESS_NODE *Parent;
} u1;
struct _MMADDRESS_NODE *LeftChild;