Author: fireball Date: Wed Sep 10 06:25:28 2008 New Revision: 36120
URL: http://svn.reactos.org/svn/reactos?rev=36120&view=rev Log: - Balance of an Memory Manager's AVL tree node can be negative, so make it a signed variable.
Modified: trunk/reactos/include/ndk/mmtypes.h
Modified: trunk/reactos/include/ndk/mmtypes.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/mmtypes.h?rev=3... ============================================================================== --- trunk/reactos/include/ndk/mmtypes.h [iso-8859-1] (original) +++ trunk/reactos/include/ndk/mmtypes.h [iso-8859-1] Wed Sep 10 06:25:28 2008 @@ -592,7 +592,7 @@ { union { - ULONG Balance:2; + LONG Balance:2; struct _MMADDRESS_NODE *Parent; } u1; struct _MMADDRESS_NODE *LeftChild;