[ros-diffs] [jgardou] 53061: [NTOSKRNL] Fix build

jgardou at svn.reactos.org jgardou at svn.reactos.org
Thu Aug 4 16:39:04 UTC 2011


Author: jgardou
Date: Thu Aug  4 16:39:04 2011
New Revision: 53061

URL: http://svn.reactos.org/svn/reactos?rev=53061&view=rev
Log:
[NTOSKRNL]
Fix build

Modified:
    trunk/reactos/ntoskrnl/mm/ARM3/vadnode.c

Modified: trunk/reactos/ntoskrnl/mm/ARM3/vadnode.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/vadnode.c?rev=53061&r1=53060&r2=53061&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/vadnode.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/vadnode.c [iso-8859-1] Thu Aug  4 16:39:04 2011
@@ -396,7 +396,7 @@
     /* Starting from the root, go down until the right-most child,
        trying to stay below the boundary. */
     LowestNode = Node = RtlRightChildAvl(&Table->BalancedRoot);
-    while (Child = RtlRightChildAvl(Node)) Node = Child;
+    while ((Child = RtlRightChildAvl(Node))) Node = Child;
 
     /* Now loop the Vad nodes */
     while (Node)




More information about the Ros-diffs mailing list