From d650c233dcfaa35d2f9865bae8f775b462bd4650 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Wed, 10 Sep 2008 11:25:28 +0000 Subject: [PATCH] - Balance of an Memory Manager's AVL tree node can be negative, so make it a signed variable. svn path=/trunk/; revision=36120 --- reactos/include/ndk/mmtypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/ndk/mmtypes.h b/reactos/include/ndk/mmtypes.h index 12630ffaff0..56caddeaea7 100644 --- a/reactos/include/ndk/mmtypes.h +++ b/reactos/include/ndk/mmtypes.h @@ -592,7 +592,7 @@ typedef struct _MMADDRESS_NODE { union { - ULONG Balance:2; + LONG Balance:2; struct _MMADDRESS_NODE *Parent; } u1; struct _MMADDRESS_NODE *LeftChild;